Here is the solution he manages for the form to work
http://sorgalla.com/projects/jcarousel/examples/static_controls.html
I have a tabbed interface like:
<div class="navTabs">
<ul class="tabs">
<li><a></a></li>
<li><a></a></li>
<li><a></a></li>
</ul>
</div>
And each tab contains a jcarousel slider.
jQuery(document).ready(
function($)
{
jQuery('.posts').jcarousel({
scroll: 4,
visible:4,
initCallback: mycarousel_initCallback
});
});
function mycarousel_initCallback(carousel) {
jQuery('.navTabs a').bind('click', function() {
carousel.scroll(1,0);
});
};
I checked your site ... thinking that you can get the code here.
In jCarousel, the initCallBack function is called and the user-defined function is launched when the tab is clicked. go to general scroll to position 1 to reset!
Here it is.
Thanks Enayet
source
share