Sample
MOUSEOVER
HERE : CLICK
HERE
Purpose
Popup alert boxes can be used for advertising and notification purposes. When
used properly, they can be very effective as immediate attention grabber.
But be aware, they can easily scare newbies who are unfamiliar with the workings
of computers.
Instructions
Choose which alert popup to use, copy and paste the coding onto your site and
change the orange colored details to suite your need. You may also use any combination
of these scripts on the same page.
On link mouseover
<a href="#" onMouseOver="alert('You are being watched!');">Click
Here!</a>
On link click
<a href="javascript:alert('You are being watched!');">Click
Here!</a>
On page load
<body onLoad="alert('You are being watched!');">
On page exit
<body onUnLoad="alert('You are being watched!');">
|