Articles in this series
Document ready is an event that indicates that the DOM of the page is completely ready so that you can handle it without worrying if some parts of the...
Selecting one or more DOM elements is one of the basic features of jQuery. The equivalents to $() in JavaScript are document.querySelector() or...
The querySelectorAll() returns a DOM list that includes elements that matches the query. The equivalent to $().each() in JavaScript is...
In jQuery, you can search a child element using the find() function. The equivalents in JavaScript are querySelector() or querySelectorAll() functions...
In jQuery, you can apply styles to an element using the css() function. The equivalent in JavaScript is the style attribute of the selected...
In jQuery, you can hide an element using the hide() function, and show an element using the show() function. The equivalent in JavaScript is...