I have a div created dynamically on pageload with javascript. it works correctly in IE9 and Firefox, but when loaded in chrome it doesn't display the background image. Is this a bug in chrome, or am I missing something?
#dateTime{
background-image:url('datebg_transparent.png');
background-repeat:no-repeat;
background-attachment:fixed;
background-position:top right;
text-align: right;
padding-top: 5px;
padding-right: 8px;
position:fixed;
color:white;
font: Times;
font-size: 1.5em;
top:0px;
right:0px;
width: 50%;
height: 20%;
}
heres the js that creates it if that matters. the function is called multiple times to reset the date/time displayed in the div, so it first checks to see if the div exists yet or not
var dateDiv = document.getElementById('dateTime');
if (!dateDiv) {
dateDiv = document.createElement('div');
dateDiv.id = 'dateTime';
document.body.appendChild(dateDiv);
}
