[jQuery] Scroll, jump, goTo etc problem
Hi,
This is what i want to use. onClick jump to 'imgIndex':
[...]
<a class="head" href="#" onclick="jumpToImg(6); return false;">Some
Info</a>
<a class="head" href="#" onclick="jumpToImg(9); return false;">More
Info</a>
[...]
<ul id="carousel">
<li>...</li>
<li>...</li>
<li>...</li>
...
</ul>
[...]
function jumpToImg(imgIndex){
jQuery(document).ready(function() {
jQuery('#carousel').jcarousel({
start: imgIndex
});
});
}
and of course is not working.
I need an ideea how can i solve this problem, this simple problem but
as far as i see complicated for me.
Thank you in advance.