http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding
I am using easy slider for banner and I called below script to play
$("#slider").easySlider({
auto: true,
continuous: true,
nextId: "slider1next",
prevId: "slider1prev",
hoverpause: true });
});
It’s sliding properly . But I want to pause sliding, While hover on the slide
You have to alter existing easySlider1.5.js to suit your requirement. As shown in your code you can add new parameter
hoverpause: trueIn easySlider1.5.js you have to add
in options,
also at the end you need to add
Here is entire js
& HTML you can initialized slider,