Select last element
Description
The following code shows how to select last element.
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() {<!-- w w w. ja v a2 s . co m-->
$("div:last").prevAll().css("color", "red");
});
</script>
<style>
.selected {
color: blue;
}
</style>
</head>
<body>
<div>java2s.com</div>
<div>java2s.com</div>
<div>java2s.com</div>
<div>java2s.com</div>
</body>
</html>