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.
<!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN"
"[URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]
<html>
<head>
<title>match</title>
<script type="text/javascript">
function find(el) {
var ta = el.form.ta;
var result = ta.value.match(el.value);
if (!result)
alert(el.value + " not found");
else
alert("Matched " + result);
}
</script>
</head>
<body>
<form>
<textarea name="ta">here is some text</textarea>
<br/>
<input type="text" name="q" />
<input type="button" value="find" onclick="find(this.form.q);" />
</form>
</body>
</html>