Hey, you know in photobucket how it will automatically select the textbox for users that upload images. Well I am try to do that, imgsync has the same thing, Any ideas on how to achieve that?
Hi I just Googled it and voilá: http://www.matts411.com/webdev/auto_selecting_text_in_various_html_elements_with_javascript
<input name="" type="text" value="auto select text" onclick="javascript:this.select();" readonly="yes" /> Code (markup):
In an onload function call you could also set focus for the input text field if you provide the name identifer. Q...