Thursday 15 September 2011

When mousehover the scrolling automatic stop using JM Products Slider


Open jcarousellite_1.0.1.js in skin/frontend/default/default/joomlart/jmproductsslider/js folder


Please find line no : 253

paste this mouseover function

 $(ul).mouseover(function() {
     o.auto = 0;
     });
         $(ul).mouseout(function() {
             o.auto = 1;
     });
         
   
     and
       
Go to  function go(to) 

Find this condition

if(!running) {


Replace this below condition

 if(!running && o.auto !=0 ) {