Select all sibling element by class name - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:siblings

Description

Select all sibling element by class name

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<style>
.siblings * {/*from   w  w w .  ja va2  s. c o  m*/
    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").siblings(".first").css({"color": "red", "border": "2px solid red"});
});
</script>
</head>
<body>

<div style="width:500px;" class="siblings">
  <ul>ul (parent)
    <li>li</li>
    <li class="first">li</li>
    <li class="start">li</li>
    <li>li (the next sibling of "start")</li>
    <li class="first">li (the next sibling of "start")</li>
  </ul>
</div>

</body>
</html>

Related Tutorials