jQuery | Syntax
It is used for selecting elements in HTML and performing the action on those elements.
Syntax:
$(selector).action()
- Used to hide the current element.
$(this).hide()
- Used to hide all <p> elements.
$("p").hide()
- Used to hide all elements with class=”test”.
$(".test").hide()
- Used to hide the element with id=”test”.
$("#test").hide()
Document Ready Event:
- jQuery Methods are inside a Document ready event for easy reading of code.
$(document).ready(function(){ // jQuery Method });
This is to check and stop the jquery before the document is finished loading. This method also allows you to have JavaScript code before the body of your document, in the head section.
Some actions that can fail if the method is run before the loaded document:
Get the image size which is not loaded or hide element which is not created yet. - The shorter method for document ready:
$(function(){ // jQuery Method });
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.