jQuery
What is ? jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. With a combination of versatility and extensibility, jQuery has changed the way that millions of people write JavaScript. Including jQuery Below are some of the most common ways to include jQuery. Browser Script tag < script src = " https://code.jquery.com/jquery-3.4.1.min.js " > < / script > ref in -npm Using jQuery At its core, jQuery is used to connect with HTML elements in the browser via the DOM. The DOM is the method by which JavaScript (and jQuery) interact with the HTML in a browser. To view exactly what the DOM is, in your web browser, right click on the current web page select Inspect. This will open up Developer Tools. The HTML cod...