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>