focus on input js code example

Example 1: focus js

focusMethod = function getFocus() {          
  document.getElementById("myButton").focus();
}

Example 2: js focus event

const form = document.getElementById('form');

form.addEventListener('focus', (event) => {
  event.target.style.background = 'pink';    
}, true);

form.addEventListener('blur', (event) => {
  event.target.style.background = '';    
}, true);

Example 3: focus js

<input type="text" id="myTextField" value="Text field.">
<p></p>
<button type="button" onclick="focusMethod()">Click me to focus on the text field!</button>

Tags:

Html Example