I try to implement the following code, this page will display when survey is completely submited and direct to this thankyou page, but I want this window close once it is being redirected.
<head>
<script>
function load()
{
window.close();
}
</script>
<!--[if IE]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body onload="load()">
<p id="thankyou">Thank you!</p>
</body>
when I use google chrome to open it, it won't close, can anyone help me with it, I want it close automatically once the page is load, thanks in advance!