I have$('.class:first'), I want $(.class:fourth') using jquery
- by Jean
Hello,
I can select the first item in the div using
$('.class:first')
Now since I will have random id values, and the class remains the same, I want to access the id of the fourth element, will it be something like this
$('.class:fourth')
using jQuery.
Thanks
Jean