Tag: jquery

How to check or uncheck checkbox using jQuery

Here is the simple way to check and uncheck checkbox button using jQuery. 1. The example below show that.. on change dropdown option of field.. all the check-boxes will be unchecked . jQuery('#nst').change(function(){ jQuery('input:checkbox').each(function() { this.checked = false; }); });...

How to make owl carousel to slide smoothly ?

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,...

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.....
Click to Chat