Answers for "js remove focus from button"

12

javascript remove focus from button

var element = document.getElementById('btnBuild');
element.setAttribute("disabled", "disabled");
Posted by: Guest on June-23-2021
1

html prevent focus on input

<input type="text" id="yourID" value="test" readonly="readonly" /> 

You can change it in javascript with : 

document.getElementById("yourID").readOnly = false; //This enables the possibility to focus
Posted by: Guest on November-29-2020

Code answers related to "js remove focus from button"

Browse Popular Code Answers by Language