Get the parents in tree Traversal - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:parents

Description

Get the parents in tree Traversal

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    var treeTraversal = $("span").parents().map(function(){
    return this.tagName;}).get().join(", ");
    $("span").after("<h2>" + treeTraversal + "<h2>");
});//from  w  w  w . java2  s. c  om
</script>
</head>

<body>
  <div>
    <p>
      <span>This is is a span element. My ancestors are: </span>
    </p>
  </div>
</body>

</html>

Related Tutorials