Jquery Home
jQuery Tutorial
- jQuery is a JavaScript Library.
- jQuery greatly simplifies JavaScript programming.
- jQuery is easy to learn.
Examples in Each Chapter
Our "Try it Yourself" editor makes it easy to learn jQuery. You can edit code and view the result in your browser:
Example
$(document).ready(function(){ $("p").click(function(){ $(this).hide(); }); });