This will create a popup msg when the user leaves the page. Change MESSAGE GOES HERE! into the msg you want to have displayed!
|
Source code
|
1
2
3
4
5
|
<script type="text/javascript">
var copiedfrom='www.imvucodes.net';
var msg='MESSAGE GOES HERE!';
window.onunload=function() { alert(msg); };
</script>
|