jQuery prevAll()

Introduction

The prevAll() method returns all previous sibling elements of the selected element.

Sibling elements are elements that share the same parent.

$(selector).prevAll(filter)
Parameter
Optional
Description
filter

Optional.

a selector expression to narrow down the search
To return multiple siblings, separate each expression with a comma.

Return all previous sibling elements of each <li> element with class name "start":

View in separate window

<!DOCTYPE html>
<html>
<head>
<style>
.siblings * {//from  w  w  w.ja v  a2 s  .  co m
  display: block;
  border: 2px solid lightgrey;
  color: lightgrey;
  padding: 5px;
  margin: 15px;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
  $("li.start").prevAll().css({"color": "red", "border": "2px solid red"});
});
</script>
</head>
<body>

<div style="width:500px;" class="siblings">
  <ul>ul (parent)
    <li>li (the previous sibling of li with class name "start")</li>
    <li>li (the previous sibling of li with class name "start")</li>
    <li>li (the previous sibling of li with class name "start")</li>
    <li class="start">li</li>
    <li>li</li>
    <li>li</li>
  </ul>
</div>
</body>
</html>



PreviousNext

Related