HOME C C++ PYTHON JAVA HTML CSS JAVASCRIPT BOOTSTRAP JQUERY REACT PHP SQL AJAX JSON DATA SCIENCE AI

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();
    });
  });