I'm using firebug and in a page there is one text field:
<INPUT TYPE="PASSWORD" NAME="CorporateSignonPassword" size="20" maxlength="28" >
and this field is disabled. Actually I've forgotten password in my banking login account and it is forcing me to type in my long passwords using visual keybord buttons.
Why isn't this working?:
$("input").attr("editable",true);
or
$("input").attr("disabled",false);
I've jquerified the page.