The jQuery next() method gives back the next sibling components of the component which we have selected.
By using next() method we can select the next siblings of the component which we have selected and then we can use them.
Syntax
selector.next()
selector − it is used to select html elements in which jquery has to be applied by using either id , class or html elements.
next() method also have an optional parameter which is explain below.
selector.next( [selector] )
The selector which is inside a brackets is optional parameter which is used to filter the search for sibling.
Below is the example for JQuery next() method:-
<html>
<head>
<style>
body * {
display: block;
border: 3px solid lightgrey;
color: grey;
padding: 6px;
margin: 16px;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("h1").next().css({"color": "#4FB053", "border": "1px solid #4FB053"});
});
</script>
</head>
<body>
<div>parent div
<p>para</p>
<span>span</span>
<h1>heading</h1>
<p>para</p>
<p>para</p>
</div>
</body>
</html>
In above example we are selecting the next sibling of the <h1> tag with the help of jQuery next() method and then making its color green.
Working demo :-https://jsfiddle.net/udfefq5d/
0 Comment(s)