Navigate into elements with JQuery using parent(), next(), find() - Javascript jQuery

Javascript examples for jQuery:Tag Traversing

Description

Navigate into elements with JQuery using parent(), next(), find()

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <script type="text/javascript" src="https://code.jquery.com/jquery-1.8.3.js"></script> 
  <script type="text/javascript">
    $(window).load(function(){/*ww  w .  j  av a  2 s  .c  om*/
console.log($('#abc').parent().next().find('span').html());
    });

      </script> 
 </head> 
 <body> 
  <div> 
   <div> 
    <input id="abc" ...> 
   </div> 
   <div> 
    <span>span data </span> 
   </div> 
  </div>  
 </body>
</html>

Related Tutorials