JQuery: Difference between revisions

From Citizendium
Jump to navigation Jump to search
imported>Brian Caputo
(New page: == jQuery - a Powerful Cross Browser JavaScript Library == jQuery is a fast and concise, cross browser JavaScript Library that simplifies HTML document traversing, event handling, animatin...)
 
imported>Tom Morris
No edit summary
Line 1: Line 1:
== jQuery - a Powerful Cross Browser JavaScript Library ==
{{subpages}}
jQuery is a fast and concise, cross browser JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax for rapid web development.
{{DISPLAYTITLE:jQuery}}
=== Benefits of jQuery ===
 
'''jQuery''' is a fast and concise, cross browser JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax for rapid web development.
 
== Benefits of jQuery ==
# Cross Browser - jQuery is designed to work on all modern browsers, which eliminates the need to create extra code and hacks for different browsers.
# Cross Browser - jQuery is designed to work on all modern browsers, which eliminates the need to create extra code and hacks for different browsers.
# Concise - jQuery will cut your JavaScript code to a fraction.
# Concise - jQuery will cut your JavaScript code to a fraction.
Line 7: Line 10:
# Lightweight - jQuery leaves a small footprint compared to the functionality it adds,  jQuery is also available via CDN from companies such as Google (http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js)  and Microsoft (http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.js)
# Lightweight - jQuery leaves a small footprint compared to the functionality it adds,  jQuery is also available via CDN from companies such as Google (http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js)  and Microsoft (http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.js)


=== Model and Usage ===
== External Links ==
* [http://www.jquery.com/ jQuery home page]

Revision as of 12:13, 22 August 2010

This article is a stub and thus not approved.
Main Article
Discussion
Related Articles  [?]
Bibliography  [?]
External Links  [?]
Citable Version  [?]
 
This editable Main Article is under development and subject to a disclaimer.


jQuery is a fast and concise, cross browser JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax for rapid web development.

Benefits of jQuery

  1. Cross Browser - jQuery is designed to work on all modern browsers, which eliminates the need to create extra code and hacks for different browsers.
  2. Concise - jQuery will cut your JavaScript code to a fraction.
  3. Eclectic Plug in Library - jQuery is one of the most popular JavaScript frameworks and has perhaps the largest plug in in library.
  4. Lightweight - jQuery leaves a small footprint compared to the functionality it adds, jQuery is also available via CDN from companies such as Google (http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js) and Microsoft (http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.js)

External Links