However it seems that the select() method is not
supported by Safari. Does anyone know why? Can
anyone suggest a workaround?
You just need to focus() before you select():
function selectText()
{
document.getElementById("textField").focus();
document.getElementById("textField").select();
}
Peace,
Scott
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Web-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/web-dev/email@hidden