Alert Boxes
The purpose of popup alert boxes is for notification purposes and for sure an attention grabber. They can be used to notify the person that wants to enter your site that there may be adult material and by clicking OK on the alert box they acknowledge this and agree to enter. Of course, you can change the text displayed to use the popup to display any message you choose.
Instructions:
Just copy and paste the one you want to use at your site into the HTML and chamge the colored area to what you would like the alert box to say.
Use this one when a link is clicked:
<a href="javascript:alert('Caution!!! Adults Only');">Click Here!</a>
Use this one when they put the mouse cursor over a link:
<a href="#" onMouseOver="alert('Caution!!! Adults Only ');">Click Here!</a>
Use this one when someone leaves a page at your site:
<body onUnLoad="alert('Caution!!!
Adults Only');">
Use this one when someone enters your site or a certain page at your site:
<body onLoad="alert('Caution!!! Adults Only');">
Return to Help Guides
|