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.
<head>
<title>This is a test</title>
<script type="text/javascript">
function doLinkTitle() {
document.getElementById('link1').href="/default.asp?title=" + document.title;
}
</script>
</head>
<body onload="doLinkTitle();">
<a href="" id="link1">Link</a>
</body>
</html>
function doThing() {
var a = document.getElementsByTagName("a");
for ( var i = 0; i < a.length; i++ ) {
a.href += "?ref=" + window.location;
}
}