Welcome to JavaScript Finder
Javascript Confirm
Here we have a confirm button. Let your vistors know when they are about to leave your site.
JavaScript : Confirm
<script language="JavaScript">
<!--
function confirmation() {
var answer = confirm("Leave JavaScript Finder?")
if (answer){
alert("Good Bye!")
window.location = "http://www.google.com/";
}
else{
alert("Thanks for staying!")
}
}
-->
</script>
Try it.