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
Please try this code
setTimeout(function() { $(Selecter).focus(); }, 0);