jQuery parent()

Introduction

The parent() method returns the direct parent element of the selected element.

$(selector).parent(filter)
Parameter
Optional
Description
filter
Optional.
a selector expression to narrow down the parent search

Return the direct parent element of <span>:

View in separate window

<!DOCTYPE html>
<html>
<head>
<style>
.ancestors * {//  w w 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.4.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
  $("span").parent().css({"color": "red", "border": "2px solid red"});
});
</script>
</head>

<body class="ancestors">body
  <div style="width:500px;">div
    <ul>ul
      <li>li
        <span>span</span>
      </li>
    </ul>
  </div>
</body>

</html>



PreviousNext

Related