jQuery Tutorial


  • jQuery is a JavaScript Library.
  • jQuery greatly simplifies JavaScript programming.
  • jQuery is easy to learn.

Try ti yourself, just example

With our online editor, you can edit the code, and click on a button to view the result.

Example

$(document).ready(function(){
    $("p").click(function(){
        $(this).hide();
    });
});

No comments:

Post a Comment