So here are the other Queries related to this Topic ….. How to overwrite the jquery script in wordpress ?jQuery overwrite the script in wordpress ?How to overwrite the jquery smooth scroll script ?How to overwrite the wp theme jquery...
How to overwrite the script or smooth scroll functionality in jQuery ~ WordPress ?
add JS or CSS to website using functions.php file in wordpress!
How to properly add style and script to your wp website using functions.php file ? Sometime we want to add CSS or JS to front-end of website without editing the parent theme files. like header.php or footer.php So here is...
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 Replace Images Links/path in WordPress After Installing an SSL Certificate ?
Here is one of the way to replace images link or path in WordPress After Installing an SSL Certificate into your website. Every time when we install SSL into our wordpress website .. After successfully installing SSL .. the website...
Stop and play owl carousel on click Jquery !
How to stop and play owl carousel on click.. so here is the custom script that help you to work owl carousel as per your need. If your owl carousel is on autoplay mode then.. // Pause on click item...
Show popup once for new website page visitors !
So if you want to show the popup on the website for first time visitors then follow this.. First of all add this code to theme footer.php file .. <div id="letcont" class="modal fade" role="dialog"> <div class="modal-dialog"> <!-- Modal content--> <div...
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,...
How to create sticky header bar for a website ?
If you want to make your header Navbar sticky or fixed at Top on window scroll than here is the solution to follow. So here is the jquery Scipt jQuery(window).scroll(function() { var scroll = jQuery(window).scrollTop(); if (scroll >= 200)...
On window scroll add/remove class with jquery !
Sometime we want to add class to particular div to make some changes on the page according to that class . Mostly this situation is happened when we want make our website header sticky or to fix the header at...
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