The end( ) method reverts the most recent destructive operation, changing the set of matched elements to its previous state right before the destructive operation.
Here is the simple syntax to use this method:
operations.end( )
Here is the description of all the parameters used by this method:
NA
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.
<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>
Your Query was successfully sent!