How to convert jQuery to JavaScript ?
Last Updated :
03 Aug, 2021
Improve
JavaScript is an object orient programming language designed to make web development easier and more attractive. In most cases, JavaScript is used to create responsive, interactive elements for web pages, enhancing the user experience.
jQuery is an open-source JavaScript library that simplifies the interactions between an HTML/CSS document, or more precisely the Document Object Model (DOM), and JavaScript.
Selection: In jQuery, to select any element, we simply use the $() sign, but in JavaScript, to select any element, we can use querySelector() or querySelectorAll().
- Program:
javascript // jQuery to select all instances // of class "select" $(".select"); // JavaScript to select only the // first instance of class "select" document.querySelector(".select"); // To select all the instances // of class "select" document.querySelectorAll(".select");
- In jQuery:
$("html")
- In JavaScript:
document.querySelector(selector)
- In jQuery:
$("body")
- In JavaScript:
document.body
- Program:
javascript // To add a class "class-name" to a <p> tag // jQuery: $p.addClass(class-name) // JavaScript: p.classList.add(class-name)
- In jQuery:
$element.addClass(class-name)
- In JavaScript:
element.classList.add(class-name)
- In jQuery:
$element.removeClass(class-name)
- In JavaScript:
element.classList.remove(class-name)
- In jQuery:
$element.toggleClass(class-name)
- In JavaScript:
element.classList.toggle(class-name)
- In jQuery:
$element.hasClass(class-name)
- In JavaScript:
element.classList.has(class-name)
- Program:
javascript // To add an event on button click // jQuery: /* handle click event */ $(".button").click( function(event) { }); // JavaScript: /* handle click event */ document.querySelector(".button") .addEventListener("click", (event) => { });
- Program:
javascript // To give a margin of 10px to all the div // jQuery: $div.css({ margin: "10px" }) // JavaScript: div.style.margin= "10px"
jQuery is an open source JavaScript library that simplifies the interactions between an HTML/CSS document, It is widely famous with it's philosophy of “Write less, do more". You can learn jQuery from the ground up by following this jQuery Tutorial and jQuery Examples.