View Single Post
Old Feb 20th, 2005, 6:31 PM   #6
tempest
Programming Guru
 
tempest's Avatar
 
Join Date: Oct 2004
Posts: 1,041
Rep Power: 6 tempest is on a distinguished road
Send a message via ICQ to tempest Send a message via AIM to tempest Send a message via Yahoo to tempest
Quote:
Originally Posted by Ooble
Remember that document.write doesn't work in XHTML though - don't ask me why.
Easy fix is...

document.write = function(str) { document.outerHTML += str; }

Btw the language attribute of script is deprecated, to keep up with standards use...
<script type="text/Javascript">
    //<![CDATA[
        /* .. your code here .. */
    //]]>
</script>
__________________


Last edited by tempest; Feb 20th, 2005 at 6:33 PM.
tempest is offline   Reply With Quote