My Javascript looks like this:
My class looks like this:
My problem is that the background image doesn't load. I have checked the Page Info in Firefox and objectbg.png does not exist in the media list.
What can I do to fix this?
Code:
var myObject = document.createElement("div");
myObject.setAttribute("class", "myclass");
myObject.appendChild(document.createTextNode("The content to go in the myObject DIV"));
Code:
.myclass
{
margin-left:20px;
margin-right:20px;
width:200px;
height:200px;
background:url(objectbg.png) repeat-y left top;
}
What can I do to fix this?
Comment