I'm working on a banner 'slider' with a
next, and
previous button.
There are 3 li elements i'm targetting.
In plain english, this is what i'm trying to achieve -
"if the last li element is displayed, (visible) - then hide it, and display the first element.."- if ($('li:last').is(':visible')) {
- // code to execute
- }
Any help / suggestions well appreciated!