Thread: HTML Codes
View Single Post
  #10  
Old 03-12-2008, 01:11 AM
Eloricth Eloricth is offline
Just call me Elo
Eloricth's Primary Pirate Info

Join Date: Feb 2008
Posts: 75
Eloricth is scurvy dog
Quote:
Originally Posted by Davy View Post
URGENT: DO NOT use the Phony Alert Message code. All it does is put ads on your userpage and wipe everything away.
It's because the script is broken. All you're doing with the script as it is currently posted is opening a script block. Any HTML that you put inside this script block will be interpreted by the browser as javascript.

The alert script should be...

Code:
<script type="text/javascript">
     alert("message here");
</script>
-Elo
Reply With Quote