Hello, I just decided to write a little jQuery Tutorial, with some examples.
Demo 1: Alert Box
First, we register a so called: “ready event” for the document.
In jQuery we do this with: $(document).ready(function()).
In the source code it would look like this:
$(document).ready(function() {
//Do something, when the document is loaded.
});
The complete source code looks like this:
[Read more...]
Written on 09.12.2011.
Category: jQuery, Tutorials.
Tags: jquery, jquery tutorial, tutorial.
