How to make image rollover on jcarousel?

127 views Asked by At

I am using Jcarousel from http://sorgalla.com/jcarousel/examples/ajax/ and it is working with no issues. How can I make the image rollover on mouse hover event? What is the js code needs to be implemented and where? Thank you

1

There are 1 answers

0
jplara On

based on the example given, there's a div called "jcarousel" so on your page load after jcarousel has been initialized add something like

$('#jcarousel ul li img').hover(function(){
    //do what you want to do here
});