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 XHTML 1.0 Strict//EN" "[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml">[/URL]
<head>
<title>test</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<script type="text/javascript">
window.onload = function () {
var a = document.getElementById("blah");
var b = document.getElementById("i_dont_exist");
if (a) {
alert("blah is disabled");
a.disabled = "disabled";
}
if (b) {
alert("i_dont_exist is disabled");
b.disabled = "disabled";
}
};
</script>
<style type="text/css"></style>
</head>
<body>
<input type="button" value="click me" id="blah" />
</body>
</html>