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?
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?
Property and attribute have different behaviours. See here https://stackoverflow.com/a/6004028/4485651
Instead use
$('#someid').attr('disabled', true);