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