Blog

Archive for the jQuery Category


jQuery Ready Event
Posted on November 21, 2011 in jQuery by Matt Jennings

The code below runs the jQuery inside the script tags AFTER the DOM is run:

$(document).ready(function(){
// Your code here
});


Create a Simple jQuery Slideshow
Posted on November 12, 2011 in jQuery by Matt Jennings

See http://www.orchinorthodontics.com/ for an example of the slideshow.

The jQuery library must be linked to your website. First follow the …

Read more