Copyright © tutorialspoint.com
The siblings( [selector] ) method gets a set of elements containing all of the unique siblings of each of the matched set of elements.
Here is the simple syntax to use this method:
selector.siblings( [selector] ) |
Here is the description of all the parameters used by this method:
selector: This is optional selector to filter the sibling Elements with.
Following is a simple example a simple showing the usage of this method:
<html>
<head>
<title>the title</title>
<script type="text/javascript"
src="/jquery/jquery-1.3.2.min.js"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function(){
$("p").siblings('.selected').addClass("hilight");
});
</script>
<style>
.hilight { background:yellow; }
</style>
</head>
<body>
<div><span>Hello</span></div>
<p class="selected">Hello Again</p>
<p>And Again</p>
</body>
</html>
|
This would generate following result.
<html>
<head>
<title>the title</title>
<script type="text/javascript"
src="/jquery/jquery-1.3.2.min.js"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function(){
$("p").siblings('.selected').addClass("hilight");
});
</script>
<style>
.hilight { background:yellow; }
</style>
</head>
<body>
<div><span>Hello</span></div>
<p class="selected">Hello Again</p>
<p>And Again</p>
</body>
</html>
|
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com