One thing I've noticed is that this is only happening in IE 6 and not FireFox.
On Sep 13, 11:00 am, Minh <[EMAIL PROTECTED]> wrote: > I have the following script to auto select the text in a input field > on focus. > $("[EMAIL PROTECTED]'text']").focus(function(){ > if($(this).val().length > 0){ > this.select(); > } > > }); > > On blur is there a way in can unselect the selected text?