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.
- The shorter method for document ready:
$(function(){ // jQuery Method });
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.
Please Login to comment...