Answers for "js select input"

0

how to select input element javascript

<input type="text" id="text-box" size="20" value="Hello world!">
<button onclick="selectText()">Select text</button>

<script>
  /* Use The
  .focus();
  .select(); 
  Methods */
function selectText() {
  const input = document.getElementById('text-box');
  input.focus();
  input.select();
}
</script>
Posted by: Guest on May-02-2021
1

javascript select input text on focus

focusMethod = function getFocus() {           
  document.getElementById("myTextField").focus(); //select the input textfield and set the focus on it
}
Posted by: Guest on November-28-2020
0

js select all

// This will select all of the text in the textarea or input called element
element.select();
Posted by: Guest on December-04-2020

Browse Popular Code Answers by Language