• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<input id="disabled-input" type="text" value="This text should be selected." disabled>
2<script>
3var input = document.getElementById('disabled-input');
4input.select();
5</script>
6