Answers for "disable on click jquery"

5

jquery remove disabled property from button

$('#edit').click(function(){ // click to
            $('.inputDisabled').attr('disabled',false); // removing disabled in this class
 });
Posted by: Guest on September-14-2020
2

disable click event jquery

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

disable button click jquery

function load(recieving_id){
    $('#roommate_but').prop('disabled', true);
    $.get('include.inc.php?i=' + recieving_id, function(data) {
        $("#roommate_but").html(data);
    });
}
Posted by: Guest on June-22-2020

Code answers related to "disable on click jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language