Using jQuery, the following is not working in FF, but it is in IE
$(this).focus().select();
I looked around for this and found that you cou
i used
$('input').focus().select();
on
and it worked in firefox. maybe I dont understand what your problem exactly is.