Find the Best Cosmetic Hospitals

Explore trusted cosmetic hospitals and make a confident choice for your transformation.

“Invest in yourself — your confidence is always worth it.”

Explore Cosmetic Hospitals

Start your journey today — compare options in one place.

jQuery Syntax!

The jQuery syntax is tailor-made for selecting HTML elements and performing some action on the element(s).

Basic syntax is: $(selector).action()

  • A $ sign to define/access jQuery
  • A (selector) to “query (or find)” HTML elements
  • A jQuery action() to be performed on the element(s)

Examples:

$(this).hide() – hides the current element.

$("p").hide() – hides all <p> elements.

$(".test").hide() – hides all elements with class=”test”.

$("#test").hide() – hides the element with id=”test”.

<script type="text/javascript">

$(document).ready(function(){

// your code

$(selector).action();

});

</script>Code language: HTML, XML (xml)

If you observe above jQuery syntax, we placed a jQuery code inside of </script> tag because jQuery is a just JavaScript library.

Following is a detailed explanation of the above jQuery syntax.

$ – The dollar sign ($) is just an alias name of jQuery and it is used to define or access the jQuery.

$(document).ready(function(){}) – It represents the document ready event and it is used to execute the jQuery code once the document is fully loaded and ready before working with it.

In above jQuery syntax, we written a $(selector).action() jQuery statement in document ready event to select and perform required actions such as setting the content or changing the color, etc. on HTML elements.

selector – It represents the HTML element of which manipulation needs to be done.

action() – It represents an action that needs to be performed on the given element.

The jQuery team provided a shorter way for document ready event (document.ready) with an anonymous function ($(function(){})).

By using document ready event shorter way, the above jQuery syntax can be rewritten as shown following.

<script type="text/javascript">

$(function(){

// your code

$("#selector").action();

});

</script>Code language: HTML, XML (xml)

Now we will see the simple example of using jQuery to set the div element text after the DOM is ready, for that write the code like as shown below.

If you observe above example, we defined a document ready event with jQuery statement to find all the div (Here div is a jQuery selector) elements in the page and set the content to “Welcome to DevopsSchool” using text() action method.

Suppose if we want to replace the div text, once the user performs some action, then we need to write the code as shown below.

Find Trusted Cardiac Hospitals

Compare heart hospitals by city and services — all in one place.

Explore Hospitals

Related Posts

What is JavaScript and use cases of JavaScript?

What is JavaScript? JavaScript is a programming language that is used to create interactive user interfaces and dynamic web pages. It is a client-side language, which means…

Read More

Complete guide of JavaScript certification courses, tutorials & training

What is JavaScript Every time a web page does more than simply sit there and display static information for you to look at, such as when it…

Read More

Complete JavaScript with AngularJS and NodeJS Certification Guide & tutorials

What is JavaScript with AngularJS and NodeJS? JavaScript was introduced as LiveScript, but Netscape converted its name to JavaScript. JavaScript is a dynamic computer programming language. It…

Read More

Best & Most Popular 5 Code Editors for JavaScript programming

JavaScript is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. JavaScript’s syntax is heavily inspired by C++ and…

Read More

Top 50 interview question and answers for JavaScript

JavaScript could be a scripting or artificial language that enables you to implement advanced options on websites each time an internet page will quite simply sit there…

Read More

TOP 250+ INTERVIEW QUESTIONS FOR JAVA

Here we will cover the basic, intermediate and advance level interview questions for java. Also we will cover the question related to java script. Java Basic interview…

Read More