Contact: aviboots(AT)netvision.net.il
39,887 questions
51,813 answers
573 users
<input id="iid" value="text text text" /> <button id="bid">Select Text</button>
const input = document.getElementById("iid"); const btn = document.getElementById("bid"); btn.addEventListener("click",()=>{ input.select(); }) /* run: */
<input id="iid" value="text text text" onclick="this.select()" />