Hi I have a text area HERE - and I want it so that when the visitor clicks in the box - it automatically 'selects all'. At the moment they have to manually scroll to select all and then copy. Please can someone help me with what the code is for this...? PLEASE
Hi gweb, Try this Javascript onclick code in your text area box: <textarea name="textarea" rows="10" cols="80" onClick="javascript:this.form.textarea.focus();this.form.textarea.select();"> Code (markup): That should do it for you, let me know if it works. Remember to replace the "textarea" in the code, to whatever your textarea name is!