html prevent focus on input code example
Example: html prevent focus on input
You can change it in javascript with :
document.getElementById("yourID").readOnly = false; //This enables the possibility to focus
You can change it in javascript with :
document.getElementById("yourID").readOnly = false; //This enables the possibility to focus