Quote:
Originally Posted by Davy
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