Modern frontend libraries and frameworks offer the ref concept for accessing DOM element references, but web developers often have to query DOM elements if they don’t depend on a specific frontend framework. See how document.querySelectorAll() implements easy, native DOM selection similar to jQuery:
Selecting DOM elements with CSS queries using jQuery and native web APIs
jQuery offers the closest() method to traverse back and find a matching DOM node for a given selector. The native DOM API also implements the same method using the OOP pattern:
Result: Selecting the closest DOM elements using jQuery and native web APIs
Some jQuery features don’t have identical, shorthand alternatives in modern standard DOM API, but we can use existing DOM API methods effectively with modern JavaScript features.
For example, jQuery supports the non-standard :contains(text) selector, so we have to implement it with the filter() array method as follows:
// jQuery:const elms = $(\\'.items li label:contains(\\\"Java\\\")\\');console.log(elms.toArray());// Native:const elms = document.querySelectorAll(\\'.items li label\\');console.log([...elms].filter(e => e.textContent.includes(\\'Java\\')));
Result: Filtering elements that contain a specific text segment using jQuery and native web APIs
The querySelectorAll() method takes the power of modern CSS pseudo-classes to offer a better native alternative for the jQuery find() function. For example, we can use the :scope pseudo-class to scope native query selector calls similar to the jQuery find() function:
Result: Scoping DOM element selectors using jQuery and native web APIs
Retrieving and updating DOM attributes
The class attribute, element-specific attributes, and custom data attributes are common HTML attributes that web developers often have to retrieve and update while developing web apps.
In the past, developers had to manipulate the native className property manually to update element class names, so they used jQuery’s addClass(), removeClass(), and toggleClass() pre-developed function implementations. But now, the native classList object implements better class attribute value handling support:
// jQuery:const elm = $(\\'#item-1\\');elm.addClass(\\'item-sel\\') .removeClass(\\'item-vl\\') .toggleClass(\\'item-lg\\') .toggleClass(\\'item-lg\\');console.log(elm.attr(\\'class\\'));// Native:const elm = document.querySelector(\\'#item-2\\');const cl = elm.classList;cl.add(\\'item-sel\\');cl.remove(\\'item-vl\\');cl.toggle(\\'item-lg\\');cl.toggle(\\'item-lg\\');console.log(elm.className);
Result: Updating the class attribute values using jQuery and native web APIs
Meanwhile, the getAttribute() and setAttribute() native DOM methods become a standard replacement for the well-known jQuery attr() shorthand function:
// jQuery:const elm = $(\\'#item-1\\');elm.attr(\\'title\\', \\'Element #1\\');console.log(elm.attr(\\'title\\'));// Native:const elm = document.querySelector(\\'#item-2\\');elm.setAttribute(\\'title\\', \\'Element #2\\');console.log(elm.getAttribute(\\'title\\'));
Result: Changing and retrieving HTML element attributes using jQuery and native web APIs
jQuery recommends developers use its attr() function to set custom data attributes, but now you can use the inbuilt dataset property for more productive data attribute retrieval/modification as follows:
Result: Updating custom data attributes using jQuery and native web APIs
DOM element manipulation
In the past, most developers used jQuery for DOM manipulation since the native DOM manipulation API didn’t offer developer-productivity-focused features. Now every modern standard web browser implements productive, high-level, inbuilt DOM manipulation support.
Creating and appending elements are the most frequent operations in DOM manipulation tasks. Here is how it’s done using both jQuery and native web APIs:
Result: Creating and appending new HTML elements with jQuery and native web APIs (wrapped with setTimeout for better demonstration)
jQuery also implemented prepend(), before(), and after() shorthand functions for productive DOM manipulation — now the native DOM API implements all these methods as well.
Look at the following example that demonstrates before() and after():
// jQueryconst createElm = () => $(\\'
list-1
\\');const elm = $(\\'#item-1\\');elm.before(createElm());elm.after(createElm());// Native:const createElm = () => { const e = document.createElement(\\'h3\\'); e.textContent = \\'item-2\\'; return e;}const elm = document.querySelector(\\'#item-2\\');elm.before(createElm());`elm.after(createElm())`;
Result: Using before() and after() functions using jQuery and native web APIs
Animating DOM elements
If you are an experienced web developer who built web apps more than a decade ago, you know how jQuery fadeIn(), fadeOut(), and animate() functions helped you to make your web apps more interactive. These animation functions even supported animation easing to build smoother animations.
Native CSS animations/transitions and JavaScript web animation API made jQuery animation API obsolete. Here is how you can implement fadeIn() with the standard web animations API:
Result: Fade-in animations using jQuery and native web animations API
You can use the native animate() method as a standard alternative for the old-fashioned, non-standard jQuery animate() function to create high-performance, smooth animations using pure JavaScript without switching CSS class names:
Result:
Creating animations with jQuery and native web animations API
jQuery dynamically updates CSS properties to construct animation keyframes, but the standard animations API natively renders animations, so the native web animation-based approach is indeed performance-friendly.
Moreover, you can create CSS-only animation loops without even using JavaScript, as explained in this comprehensive tutorial.
Working with browser events
Every browser typically lets developers attach event handlers through JavaScript for various standard events. Every web app uses DOM events to make the web interface interactive for users. jQuery offers shorthand on() and off() functions to register event handlers, but the native DOM API also offers self-explanatory functions for the same purpose: