I have a disabled input tag in which the cursor property is text;
<input type="text" value='1111' style='cursor:text' disabled>
When I click on that input I want the disabled attribute to be removed. but things seems doesn't work.
input.addEventListener('click', function () {
input.disabled = false})