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:
Parameters:
Here is the description of all the parameters used by this method:
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.
<html>
<head>
<title>the title</title>
<script type="text/javascript"
src="/jquery/jquery-1.3.2.min.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>Hello</span>, how are you?</p>
</body>
</html>
No comments: