Here is the solution to make owl slider to slide image smoothly.. in wordpress or html scripts. To make owl slider to slide image smoothly.. just add this smartSpeed attribute to owl function.. $('#nst-video').owlCarousel({ items: 2, loop: true, margin: 10,...
How to make owl carousel to slide smoothly ?
Smooth Scroll of window to a div using jquery
if you want to scroll the window smoothly on click then you can make that using this code to reach the particular div. jQuery(".addto_cart_button").click(function() { jQuery('html, body').animate({ scrollTop: jQuery("#cust-id").offset().top }, 2000); }); If you have multiple link to scroll.....