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>
<body>
<form name="form1" method="post" action="test.htm">
<input ID="bob" type="text" onClick="change();">
</form>
<script>
function change(){
document.getElementById('bob').style.backgroundColor = '#FF0000';
}
</script>
</body>
</html>