I want to use the defaultfocus property on a form in ASP.Net, and therefore I set this property to a textbox. This works as expected on IE, but in the Safari 4 beta, the content of the textbox is also selected. How can I make this work as expected on Safari?
i tried also some jquery call, and the problem is there also:
$("input:visible:enabled:first").focus();
in safari it looks like it calls select() instead of focus. does anyone have a solution to this problem?