Es algo sencillo de hacer. Un par de nociones básicas y ya está
Código HTML:
Ver original<!DOCTYPE html>
<html dir="ltr" lang="es-es">
<input type="text" value="foo"> <input type="text" value="bar"> <input type="text" value="candy">
Array.prototype.forEach.call(document.querySelectorAll('input[type="text"]'), function(e, i, a){
a[i].addEventListener('focus', function() {
this.select();
}, false);
});