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.
<html><head><title>TEST</title>
<script language="JavaScript">
function txtsel(str){
obj = document.getElementById('txt');
if(document.all && (obj.value.indexOf(str)> -1)){
seltxt = document.getElementById('txt').createTextRange();
seltxt.findText(str);
seltxt.select(); }
}
</script></head><body>
<form name="test">
<textarea id="txt" rows="6" cols="12">This is a TEST
</textarea><p>
Enter Search:<input type="text" id="find" size="20"
onBlur="txtsel(this.value);">
</body></html>