討論 » 建立請求
Script changing form attributes
I want that the script self remove the disabled="" part:
<input disabled="" id="btn_download" value="Download File" class="dwld_btn" type="submit">
var d=document.querySelectorAll('input'); for(var i=0;i
document.getElementById('btn_download').disabled = false;
Or like this, for one specific element.
登入以回復
Script changing form attributes
I want that the script self remove the disabled="" part: