Wednesday, September 25, 2024
Google search engine
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

Recent Comments