Forum Moderators: open
I've come across this but it is not working...
<script type="text/javascript">
if (document.getElementById) {
var h2=document.createElementNS("http://www.w3.org/1999/xhtml","h2");
document.getElementsByTagName("message")[0].appendChild(h2);
}
</script>
John
<script type="text/javascript">
if (document.getElementById) {
var l=document.createElementNS("http://www.w3.org/1999/xhtml","link");
l.setAttribute("rel", "stylesheet");
l.setAttribute("type", "text/css");
l.setAttribute("href", "../themes/theme-city.css");
l.setAttribute("media", "screen");
document.getElementsByTagName("head")[0].appendChild(l);
}
</script>