I am using jquery-1.7.2.min.js
I'm getting TypeError:
$("#TextBox1").removeattr is not a function [Break On This Error]
$("#TextBox1").removeattr("disabled");
Why?
The correct function name is removeAttr(), not removeattr:
$("#TextBox1").removeAttr("disabled");
But starting from jQuery 1.6 it's better to use the .prop() method for setting native attributes such as disabled and checked:
$('#TextBox1').prop('disabled', false);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With