I have this function that disables the input after user clicks:
$('.click-off').click(function () {
var btn = this;
setTimeout(function () { $(btn).attr('disabled', 'disabled'); }, 1);
return true;
});
And I have this input with a javascript confirmation:
<input type="submit" class="click-off" onclick="return confirm('Are you sure?');" value="Delete">
Even if I click "cancel" in the confirmation box, the $('.click-off').click() event is called, and the button becomes disabled.
The $('.click-off').click() is used by a lot of inputs, so the confirmation can't be inside of it.
How can I check the confirm return in the $('.click-off').click event? Or even prevent the $('.click-off').click event to be called?