Get last row
Description
The following code shows how to get last row.
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 va 2s . co m-->
$("tr:last").css({
backgroundColor : 'yellow',
fontWeight : 'bolder'
});
});
</script>
</head>
<body>
<table>
<tr>
<td>First</td>
</tr>
<tr>
<td>Middle</td>
</tr>
<tr>
<td>Last</td>
</tr>
</table>
</body>
</html>