Playing with Input Boxes
HTML
<input type="text" value="nice" onfocus="this.select()" />
JavaScript
$(document).ready(main);
function main() {
$("input").click(function() {
$(this).focus();
});
}
<input type="text" value="nice" onfocus="this.select()" />
$(document).ready(main);
function main() {
$("input").click(function() {
$(this).focus();
});
}