Skip to content

Instantly share code, notes, and snippets.

@shaikotahmed19
Last active October 6, 2019 06:50
Show Gist options
  • Select an option

  • Save shaikotahmed19/2d0c898e9863948bbe3f32761e1074b0 to your computer and use it in GitHub Desktop.

Select an option

Save shaikotahmed19/2d0c898e9863948bbe3f32761e1074b0 to your computer and use it in GitHub Desktop.
preventDefault disable by jquery
$(document).ready(function(){
$(".wc-cart-contents").on('click', function(event){
event.preventDefault();
});
});
$(document).ready(function(){
$("a").click(function(event){
event.preventDefault();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment