Questions about this topic? Sign up to ask in the talk tab.
Difference between revisions of "JQuery"
From NetSec
Line 4: | Line 4: | ||
==Example== | ==Example== | ||
Here is an example piece of code written in jQuery: | Here is an example piece of code written in jQuery: | ||
− | <nowiki>$('div.container').html('hello world');</nowiki> | + | |
+ | <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');