Click to See Complete Forum and Search --> : How Do I Make Pop-ups And Copyright on Websites


Psycho2391
06-26-2004, 02:03 PM
This is My Site Http://xxxginoxxx.friendpages.com How I Do Pop-Ups That Say Hi Welcome Ect.. And Copyright When They Right Click

Ben Rogers
06-27-2004, 12:29 AM
I'm not even going to get into why that's wrong, I'll just tell you you posted in the wrong forum. This is clearly a Javascript (http://www.webdeveloper.com/forum/forumdisplay.php?s=&forumid=3) question.

TheTeenScripter
06-29-2004, 03:47 PM
Even though the guy above is right, i'll give you a simple code for that:


<script language="javascript">
alert("[MESSAGE TO BE SAID WHEN THE ENTER YOUR WEBPAGE]");
function doAlert() { alert("[MESSAGE TO BE SAID WHEN THEY RIGHT-CLICK]");
return false } document.oncontextmenu=doAlert;
</script>