Traversing IS : is « jQuery « JavaScript DHTML






Traversing IS

    

<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
            var isFormParent = $("input[type='checkbox']").parent().is("form")
            alert(isFormParent);

        });
    </script>

  </head>
  <body>
    <body>
      <form><input type="checkbox" /></form>
      <div></div>

  </body>
</html>

   
    
    
    
  








Related examples in the same category

1.Is it class
2.is(expr)
3.is() can be used inside an event handler.