
<!-- ONE STEP TO INSTALL SELECT ALL:

  1.  Copy the coding into the BODY of your HTML document  -->

<!-- STEP ONE: Paste this code into the BODY of your HTML document  -->

<BODY>

<form>
<textarea name="yourForm" rows=3 cols=40 wrap=virtual>
Any text that you want highlighted.
</textarea>
<br>
<br>
<input type=button value="Highlight All" onClick="javascript:this.form.yourForm.focus();this.form.yourForm.select();">
</form>

