Questions about this topic? Sign up to ask in the talk tab.
Difference between revisions of "JQuery"
From NetSec
Line 1: | Line 1: | ||
jQuery is a JavaScript library [http://jquery.com/ that simplifies HTML document traversing, event handling, animating, and Ajax interactions]. | jQuery is a JavaScript library [http://jquery.com/ that simplifies HTML document traversing, event handling, animating, and Ajax interactions]. | ||
+ | |||
+ | |||
+ | ==Example== | ||
+ | Here is an example piece of code written in jQuery: | ||
+ | <nowiki>$('div.container').html('hello world');</nowiki> |
Revision as of 08:36, 5 September 2011
jQuery is a JavaScript library that simplifies HTML document traversing, event handling, animating, and Ajax interactions.
Example
Here is an example piece of code written in jQuery: $('div.container').html('hello world');