Find first/next hidden Div using jQuery
Hello Friends,
Today i need to find(show) the first hidden element of parent div which must be visible when i remove any of visible divs. This can be done by finding last visible element and then find the first hidden element using next selector of jQuery. Look at below syntax
$('.divclass:visible:last').next();
If you find any problem in this than let me know by comment.






I am