Select first number of elements
Description
The following code shows how to select first number of elements.
Example
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!-- ww w. j a v a 2s .com-->
$("td:lt(2)").css("color", "red");
});
</script>
</head>
<body>
<table>
<tr>
<td>First</td>
</tr>
<tr>
<td>Middle</td>
</tr>
<tr>
<td>Last</td>
</tr>
</table>
</body>
</html>