Finds all tds with children, including text. : Selector table « jQuery « JavaScript DHTML






Finds all tds with children, including text.

  
<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
               
            $("td:parent").fadeTo(1500, 0.3);
        });
    </script>

  </head>
  <body>
    <body>
       <table border="1">
        <tr><td>Value 1</td><td></td></tr>
    
        <tr><td>Value 2</td><td></td></tr>
       </table>

    </body>
</html>

   
    
  








Related examples in the same category

1.Finds TD #1 and higher
2.Finds all table row containing "F"
3.Finds even table rows
4.Finds TDs less than the one with the second index
5.Finds the last table row.