Get form input parent : parents « jQuery « JavaScript DHTML






Get form input parent

    


<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
       var input = $(":submit").parent().css({background:"yellow", border:"3px red solid"});
    
       $('#result').text('jQuery matched ' + input.length + ' elements.');
        
    });
    </script>
  </head>
  <body>
     <form><input type="submit" /></form>
     <div id="result"></div>


  </body>
</html>

   
    
    
    
  








Related examples in the same category

1.Get DIV parent count
2.Get parents
3.Get parent with certain class
4.Returns true, because the parent of the input is a form element
5.parent(expr): filter the set of parent elements
6.Shows the parent of each element as (parent > child). Check the View Source to see the raw html.
7.parents(expr) gets elements containing the unique ancestors
8.Click to find all unique div parent elements of each span.