Reputation: 490
I have to disable a button on click.Using below code but its not working. Below code is using jquery
$('#someid').prop('disabled', true);
Any solution?
Upvotes: 0
Views: 50
Reputation:
Property and attribute have different behaviours. See here https://stackoverflow.com/a/6004028/4485651
Instead use
$('#someid').attr('disabled', true);
Upvotes: 1