I am using jQuery and I want to select the last visible element with some class e.g. 'target'
how can I开发者_StackOverflow社区 do that ?
Sorry but I didn't realize that it was this easy..
I found the answer after googling it
$('.target:visible:last');
var e = jQuery('.target:visible:last');
精彩评论