- jQuery is a cross-browser JavaScript library designed to simplify the client-side scripting of HTML. It was released in January 2006 at BarCamp NYC by John Resig. Used by over 31% of the 10,000 most visited websites, jQuery is the most popular JavaScript library in use today.
JQuery is a Javascript libary that works over all browsers. Its features include:
- DOM Element selections using the cross browser open source selector engine, Sizzle.
- DOM trabersal and modification
- Events
- CSS Manipulation
- Effects and animation
- Ajax
- Extensibility
- Utilities - Such as browser version, and the EACH fuction
- And Cross-browser support.
<script type="text/javascript" src="jquery.js"></script>
Another, more popular way to link the JQuery Library to your webpage, is by using what is known as the .ready code.
$(document).ready(function() { // jquery goes here });
Or the shortcut
$(function() { // jquery goes here });
No comments:
Post a Comment