Answers for "how to select a input element in javscript"

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

Code answers related to "how to select a input element in javscript"

Browse Popular Code Answers by Language