Mega Code Archive

 
Categories / JavaScript Tutorial / JQuery
 

Matches a single element by its index

< html>   <head>     <script type="text/javascript" src="js/jquery-1.3.2.js"></script>     <script type="text/javascript">   $(document).ready(function(){       $("td:eq(2)").css("color", "red");          });     </script>   </head>   <body>    <table border="1">     <tr><td>Row</td></tr>   </table>   </body> </html>