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>TekTips</title>
<script>
function ck_value(val) {
if(val == 'Sherlock'){
document.test.t_button.click(); }
}
</script></head><body>
<form name="test">
<input type="text" size="20" name="url_value" value="Sherlock"
onBlur="ck_value(this.value)">
<input type="button" name="t_button" value="Test Button"
onClick="alert('Programmatically Watson')">
</body></html>