You are not logged in.

  • »imvucodes« is a verified user
  • "imvucodes" started this thread

Posts: 130

Location: Interwebs

Occupation: Serving code snippets non stop.

  • Send private message

1

Monday, July 12th 2010, 2:36pm

Leaving Popup Msg *revised*

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>

Similar threads

Rate this thread