Seleccione todo el contenido del cuadro de texto cuando reciba el foco (Vanilla JS o jQuery)
¿Qué es una solución Vanilla JS o jQuery que seleccionará todo el contenido de un cuadro de texto cuando el cuadro de texto reciba el foco?
Aceptado
$(document).ready(function() {
$("input:text").focus(function() { $(this).select(); } );
});
<input type="text" onfocus="this.select();" onmouseup="return false;" value="test" />
Expandir fragmento