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.
<a href="[URL unfurl="true"]http://www.google.com"[/URL] target="_blank" title="That search engine" onclick="window.open(this.href,'blank','width=200,height=100,menubar=no,toolbar=no');">Google</a>
<?xml version="1.0"?>
<!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>Opens self in new window and closes parent</title>
<script type="text/javascript">
function mySite() {
if ((window.name == null) || (window.name == "")) {
window.open(window.location.href,'myWindow','width=640,height=480,menubar=no,toolbar=no');
window.close();
}
}
</script>
</head>
<body onload="mySite()">
<h1>Welcome</h1>
</body>
</html>
That's the drawback.godzuki said:...would mean anyone looking at would have to have a vb or delphi etc app running?