토론 » 제작 요청

Script changing form attributes

§
게시: 2015-10-13
수정: 2015-10-13

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">
§
게시: 2015-10-13

var d=document.querySelectorAll('input'); for(var i=0;i

Jixun.Moe관리자
§
게시: 2015-10-19
document.getElementById('btn_download').disabled = false;

Or like this, for one specific element.

답글 게시

답글을 게시하려면 로그인하세요.