ManyCodes.com – codes & scripts Get free programming codes and tutorials!

28Jul/090

How to Close the browser with a button

Here is how you can close the browser with a button.

Put the code below within your site's source code. If you dont know how to implement this code into your site, please goto how to implement the code to your website

Code:

<!-- this script is from www.manycodes.com -->
<!-- Start of Close Browser Script -->
<!-- When the "Close Window" button is clicked, this script
 will close the browser window that the webpage is in.
-->
<script language="JavaScript">
<!--

function closeIt() {
 close();
}

// -->
</script>

<center>
<form>
<input type=button value="Close Window" onClick="closeIt()">
</form>
</center>

<!-- End of Close Browser Script -->

<font face="Tahoma"><a target="_blank" href="http://www.manycodes.com/"><span style="font-size: 8pt; text-decoration: none">JavaScript Free Code</span></a></font>