Posts Tagged ‘select all’

Jquery select text on focus or click

$('input').focus(function(){
    this.select();
});