Answers for "disable click jquery a tag"

0

disable anchor tag jquery after click

$('.btn').on('click', function(e) {
    e.preventDefault();
    $(this).off("click").attr('href', "javascript: void(0);");
   //add .off() if you don't want to trigger any event associated with this link
});
Posted by: Guest on July-15-2020
3

disable click event jquery

$("#navigation ul li").unbind("click");
Posted by: Guest on March-17-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language