L
laredotornado
Hi,
Using advice from this newsgroup, I tried this JS to create new DOM
elements on-the-fly
var divSidebarItem =
document.createElement("div");
divSideBarItem.setAttribute("class",
"sidebarToDo");
but I get a JS error on the second line "divSideBarItem" is not
defined when I try and invoke the "setAttribute" method. Is there a
better way to create an element with attributes or is there something
wrong with the above?
Thanks, - Dave
Using advice from this newsgroup, I tried this JS to create new DOM
elements on-the-fly
var divSidebarItem =
document.createElement("div");
divSideBarItem.setAttribute("class",
"sidebarToDo");
but I get a JS error on the second line "divSideBarItem" is not
defined when I try and invoke the "setAttribute" method. Is there a
better way to create an element with attributes or is there something
wrong with the above?
Thanks, - Dave