Code:
<html> <title>JavaScript: Select All</title> <body> <center> <form> <textarea name="text_area" rows="10" cols="80"> blah blah blah blah blah blah blah </textarea> <br> <input type="button" value="Highlight Text" onClick="javascript:this.form.text_area.focus();this.form.text_area.select();"> </form> </center> </body> </html>
Comment