What is JQuery?
jQuery is a lightweight JavaScript library that emphasizes interaction between JavaScript and HTML. It was released in January 2006 at BarCamp NYC by John Resig.
jQuery is free, open source software, dual-licensed under the MIT License and the GNU General Public License, Version 2.
Features
each
functionDownloading JQuery
http://docs.jquery.com/Downloading_jQuery
How to use JQuery
This is a basic tutorial, designed to help you get started using jQuery. If you don’t have a test page setup yet, start by creating a new HTML page with the following contents:
[sourcecode language="plain"]<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
</script>
</head>
<body>
<a href="http://jquery.com/">jQuery</a>
</body>
</html>
[/sourcecode]
Edit the src
attribute in the script tag to point to your copy of jquery.js. For example, if jquery.js is in the same directory as your HTML file, you can use:
[sourcecode language=”plain”]<script type="text/javascript" src="jquery.js"></script>[/sourcecode]
JQuery FAQ at JQuery.com
http://docs.jquery.com/Frequently_Asked_Questions
[ratings]