I have a set of LI elements with overflow propety set to hidden by the
jCarouselLite plugin. What I would like to do
is to scroll the jCarouselLite'd element in order to scroll to the
LI element I want, since I have it configured to
show only 3 elements.
Looking at the html code generated by the plugin, I can see:
<ul ..>
<li ..style="..overflow:hidden">1</li>
<li ..style="..overflow:hidden">2</li>
<li ..style="..overflow:hidden">3</li>
<li ..style="..overflow:hidden">4</li>
</ul>
So, I have the first 3 LI elements shown by the plugin, but not the last one. What I would like to do is to scroll so that the 4th LI element is shown, or I can do that by myself if I manage to check if that last LI is within the overflow area, so I can see if it's necessary to scroll for it in order to show it or not.
Hope I'm not getting things confused to understand.