Select from following answers:- parent()
- last()

- element selector()
- id selector ()
- All Above
In the group of matched elements this last () methos is used to find the element
example :
<script>
$("div li").last().css("border", "2px solid red");
</script>
Show Correct Answer
Asked In: spotted while learning |
Alert Moderator