Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 462 Bytes

what_is_jquery.md

File metadata and controls

17 lines (10 loc) · 462 Bytes

What is jQuery?

jQuery is a fast, small, and feature-rich JavaScript library. It simplifies tasks such as DOM manipulation, event handling, animation, and Ajax requests. It provides a simple API that works across all browsers.

Example:

$(document).ready(function() {
  $('#myElement').hide();
});

Tags: basic, JavaScript, libraries