I don't know if it's worth it, but if you insist on fixing this problem in Firefox, you can do this:
In the focus event, if the value of the text field is an empty string, then:
: http://jsfiddle.net/U2TPK/11/
script, . : http://vidasp.net/js/selection.js
selec.set(this, 0, 0) .
$("input:text").focus(function() {
if ( this.value.length === 0 ) {
this.value = " ";
selec.set(this, 0, 0);
}
});
: http://jsfiddle.net/U2TPK/12/
( , )