I want to know how to enable a disabled input field.
<input type="text" class="form" value="Text" disabled="">
I've tried to use this code via tampermonkey
var fContrl = document.getElementsByClassName("form");
for (var i = 0; i < fContrl.length; i++)
fContrl[i].setAttribute("disabled", false);
But it doesn't work