Blog


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
});


Get Root URL with PHP
Posted on November 15, 2011 in PHP by Matt Jennings

PHP predefined variable to get the root URL.

[php]

[/php]


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