jQuery end( ) Method

« Previous Chapter Next Chapter »

Description:

The end( ) method reverts the most recent destructive operation, changing the set of matched elements to its previous state right before the destructive operation.

Syntax:

Here is the simple syntax to use this method:

Example

operations.end( )
                                        

Parameters:

Here is the description of all the parameters used by this method:

  • NA

Example:

Following is a simple example a simple showing the usage of this method. This selects all paragraphs, finds span elements inside these, and reverts the selection back to the paragraphs.

Example

<html>
<head>
   <script type="text/javascript"  src="../../js/jquery-2.2.0.js"></script>
   <script>
   $(document).ready(function(){
      $("p").find("span").end().css("border", "2px red solid");
   });
  </script>
  <style>
      p{ 
         margin:10px; 
         padding:10px; 
      }
  </style>
</head>
<body>
  <p><span>NewFile.</span>, how are you?</p>
</body>
</html>
                                        
Code It Online

« Previous Chapter Next Chapter »

Have Any Suggestion? We Are Waiting To Hear from YOU!

Your Query was successfully sent!