next() Method - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:next

Description

The next() method returns the next sibling element of the selected element.

Syntax

Parameter Require Description
filterOptional. a selector expression to narrow down the next sibling search

The following code shows how to Return the next sibling element of each <li> element with class name "start":

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<style>
.siblings * {//ww  w  .j a v a 2  s  . com
    display: block;
    border: 2px solid lightgrey;
    color: lightgrey;
    padding: 5px;
    margin: 15px;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("li.start").nextUntil("li.stop", ".first").css({"color": "red", "border": "2px solid red"});
});
</script>
</head>
<body>

<div style="width:500px;" class="siblings">
  <ul>ul (parent)
    <li>li</li>
    <li>li</li>
    <li class="start">li</li>
    <li class="first">li</li>
    <li>li</li>
    <li class="1">li</li>
    <li class="stop">li</li>
  </ul>
</div>

</body>
</html>

Related Tutorials