Friday, September 5, 2025
HomeLanguagesJavascriptjQuery | andSelf( ) with Examples

jQuery | andSelf( ) with Examples

The andSelf( ) is an inbuilt method in jQuery which is used to add the previous set of elements to the current set. This method adds previous DOM tree elements to the current set and maintains them in the internal stack which will take care of changes to the matched set of elements. Document Object Model(DOM) is a World Wide Web Consortium standard. This defines for accessing elements in the DOM tree.
Syntax:

andSelf( )(selector);

Parameters: It does not accept any parameter.
Return Value: It returns all added element against the specified selector.
jQuery code to show the working of andSelf( ) method:




<html>
  
<head>
    <script type="text/javascript" 
    </script>
    <script>
        $(document).ready(function() {
            $("div").find("p").andSelf().addClass("border");
        });
    </script>
    <style>
        p,
        div {
            margin: 5px;
            padding: 5px;
        }
          
        .border {
            border: 2px solid green;
        }
          
        .background {
            background: green;
        }
    </style>
</head>
  
<body>
    <div>
        <p>This is first paragraph.</p>
        <p>This is second paragraph.</p>
    </div>
</body>
  
</html>


Here border would be added to previous selection which is a division and then second selection which is paragraphs.
Output:

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11863 POSTS0 COMMENTS
Shaida Kate Naidoo
6750 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6701 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS