jQuery | add() method with Example
The jQuery add() method is used to add element to the existing group of elements. This method can add element to the whole document, or just inside context element if the context parameter is defined.
Syntax:
$(selector).add(element, context_parameter)
Here selector helps to find the matching element.
Parameters: It accept two parameters that are specified below:
jQuery code to show the working of add() method:
< html > < head > /jquery/3.3.1/jquery.min.js"></ script > < script > $(document).ready(function() { $(".heading").add("#para1").add("#span1"). css("background-color", "lightgreen"); }); </ script > </ head > < body > < p style = "color:green" class = "heading" >Welcome to GfG!!!</ p > < p style = "color:green" id = "para1" >Welcome to GeeksforGeeks !!!</ p > < span style = "color:green" id = "span1" >Article 1 !!!.</ span > < div >This example adds the same css style for both "p" and "span" elements, using its class and id name!!! </ div > </ body > </ html > |
chevron_right
filter_none
Output:
Recommended Posts:
- jQuery | off() Method
- jQuery | before() Method
- jQuery | is() Method
- jQuery | css() Method
- jQuery | die() Method
- jQuery | get() Method
- jQuery | unload() Method
- jQuery | ajaxSuccess() Method
- jQuery | ajaxError() Method
- jQuery | slideDown() Method
- jQuery | ajaxStop() Method
- jQuery | trigger() Method
- jQuery | slideToggle() Method
- jQuery | append() Method
- jQuery | param() Method
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.