Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
sounds like you want to highlight only a part of the text in a textarea, butgetting the values say group of text highlighted in say a textare box
says that you want to highlight all of the text in the textarea.highligh the whole content of a textarea box
<form name="SA">
<textarea name="textA" rows="5" cols="20">
Text To HighLight
</textarea>
<BR>
<input type="button" value="HighLight" onClick="javascript:this.form.textA.focus();this.form.textA.select();">
</form>