I just want this jcarousel to open the links when "li img" is loaded instead of clicked on a discography page. I'm a designer learning jQuery. Go easy with me, please. That's my first question. :)
$(function () {
/**
* build the carousel for the Albums
*/
$('#mp_albums').jcarousel({
scroll: 1,
wrap: 'both',
}).children('li').bind('click', function () {
//when clicking on an Album, display its info, and hide the current one
var $this = $(this);
$('#mp_content_wrapper').find('.mp_content:visible').hide();
$('#mp_content_wrapper').find('.mp_content:nth-child(' + parseInt($this.index() + 1) + ')').fadeIn(1000);
});
});
Thanks in advance.