This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Background color problem with dynamic XSL transformations


[Kevin Nardi]
>
>
> >I've noticed that IE interprets HTML differently depending on whether it
is
> >static or dynamic.  The dynamic HTML seems to be interpreted much more
> >strictly.  Try "silver" instead of "Silver", or if that doesn't work, try
a
> >hexidecimal value.
> >

How are you trying to change the bgcolor dynamically, and what object are
you trying to change the color of?

When I change the bgcolor of the document, I can only change it during the
onload event, otherwise the new color flashes for a second and then goes
away.  However, If I set it in the onload event, I do get silver when I ask
for 'silver'.  I got the same behavior on IE5.5, NS4.73, and NS 6.1.

Here's what I did:

<html>
<head>
<script language='javascript'>

function changecolor(){
 document.bgColor='silver'
}

</script>
</head>

<body onload='changecolor()'>
<h3>This is a test of dynamically setting the document bgcolor</h3>

</body>
</html>

Tom P


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]