jQuery, Frist Steps
This tutorial and next ones assumes that you have a previous basic understanding of Html, JavaScript, CSS.
In order to use jQuery you have to load it. To do that you can download it from Here .(version 1.4.2). Please visit http://jquery.com/ for previous and updated versions.
Another way you could use jQuery without storing it onto your computer is to load the CDN jQuery core file from Google or Microsoft. Google: http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js Microsoft: http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js
Please be aware that you can choose to either put your JavaScript or CSS code on the same HTML file or you can create separate files for both JavaScript andd CSS and then link them into your HTML file.
In the next example you will find a basic structure of a HTML document, with sections for both CSS and JavaScript / jQuery code inside Click on the appropriate button to either see the Script or the Demo. Show / Hide Script Show / Hide Demo
<html&…