.last() เป็นการใช้ jQuery Traversing กับ .last() อ้างถึง element ที่อ้างถึงที่อยู่ในลำดับ สุดท้าย last element
Syntax
.last()
Example ตัวอย่างการใช้งาน jQuery .last()
Traversinglast.html
<html>
<head>
<title>ThaiCreate.Com jQuery Tutorials</title>
<style>
.highlight{background-color: yellow}
</style>
<script type="text/javascript" src="jquery-1.6.4.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("p span").last().addClass('highlight');
});
</script>
</head>
<body>
<p><span>Look:</span> <span>This is some text in a paragraph.</span> <span>This is a note about it.</span></p>
</body>
</html>