Load jQuery from CDN with Local Fallback

It’s best to load jQuery from a reliable CDN (like Google) for your code. Sometimes (rarely) the CDN you are pulling from may be down or possibly blocked by your web provider. You can add local link to insure your scripts properly function. Simple!

Populate a DIV from a Form Select with jQuery

Have you ever wanted to populate a div with some specified text based on a form select. Below is my super simple solution. First you will need to add a select into your form and create the div where you want your specified text displayed. The HTML [html] <select name="mySelect" …