here's the problem;
-click on links
-click on grphka
there's supposed to be a table node taking the text place's ( which correctly occur on nn and mozilla )
and here's the javascript code that generates the table:
function fCreateTable(name) {
//======table
oNodeMgr.tableNodeArr[name] = document.createElement("table"
;
oNodeMgr.tableNodeArr[name].style.width = "396px";
//======1er tr
temptr1 = document.createElement("tr"
;
//======1er td
temptd4 = document.createElement("td"
;
temptd4.style.height = "15px";
temptd4.style.width = "396px";
temptd4.colspan = "2";
temptr1.appendChild(temptd4);
//======2e tr
temptr2 = document.createElement("tr"
;
//======1er td
temptd1 = document.createElement("td"
;
temptd1.style.height = "46px";
temptd1.style.width = "108px";
temptd1.style.verticalAlign = "middle";
temptd1.style.textAlign = "center";
tempimg1 = document.createElement("img"
;
tempimg1.src = oImgMgr.imgArr["deviantart"].src;
temptd1.appendChild(tempimg1);
//======2e td
temptd2 = document.createElement("td"
;
temptd2.style.height = "46px";
temptd2.style.width = "288px";
temptd2.style.verticalAlign = "middle";
temptd2.style.textAlign = "left";
temptd2.className = "common";
tempa1 = document.createElement("a"
;
tempa1.href = " tempa1.target = "_blank";
temptxt1 = document.createTextNode("deviantArt.com"
;
tempa1.appendChild(temptxt1);
temptd2.appendChild(tempa1);
temptr2.appendChild(temptd1);
temptr2.appendChild(temptd2);
//======3e tr
temptr3 = document.createElement("tr"
;
//======1er td
temptd1 = document.createElement("td"
;
temptd1.style.width = "396px";
temptd1.colspan = "2";
temptr3.appendChild(temptd1);
oNodeMgr.tableNodeArr[name].appendChild(temptr1);
oNodeMgr.tableNodeArr[name].appendChild(temptr2);
oNodeMgr.tableNodeArr[name].appendChild(temptr3);
return null;
}
and strangely,
-click on wallpapers
-click on algopolis
is correctly working in every browsers
thks in advance for any tips
-click on links
-click on grphka
there's supposed to be a table node taking the text place's ( which correctly occur on nn and mozilla )
and here's the javascript code that generates the table:
function fCreateTable(name) {
//======table
oNodeMgr.tableNodeArr[name] = document.createElement("table"
oNodeMgr.tableNodeArr[name].style.width = "396px";
//======1er tr
temptr1 = document.createElement("tr"
//======1er td
temptd4 = document.createElement("td"
temptd4.style.height = "15px";
temptd4.style.width = "396px";
temptd4.colspan = "2";
temptr1.appendChild(temptd4);
//======2e tr
temptr2 = document.createElement("tr"
//======1er td
temptd1 = document.createElement("td"
temptd1.style.height = "46px";
temptd1.style.width = "108px";
temptd1.style.verticalAlign = "middle";
temptd1.style.textAlign = "center";
tempimg1 = document.createElement("img"
tempimg1.src = oImgMgr.imgArr["deviantart"].src;
temptd1.appendChild(tempimg1);
//======2e td
temptd2 = document.createElement("td"
temptd2.style.height = "46px";
temptd2.style.width = "288px";
temptd2.style.verticalAlign = "middle";
temptd2.style.textAlign = "left";
temptd2.className = "common";
tempa1 = document.createElement("a"
tempa1.href = " tempa1.target = "_blank";
temptxt1 = document.createTextNode("deviantArt.com"
tempa1.appendChild(temptxt1);
temptd2.appendChild(tempa1);
temptr2.appendChild(temptd1);
temptr2.appendChild(temptd2);
//======3e tr
temptr3 = document.createElement("tr"
//======1er td
temptd1 = document.createElement("td"
temptd1.style.width = "396px";
temptd1.colspan = "2";
temptr3.appendChild(temptd1);
oNodeMgr.tableNodeArr[name].appendChild(temptr1);
oNodeMgr.tableNodeArr[name].appendChild(temptr2);
oNodeMgr.tableNodeArr[name].appendChild(temptr3);
return null;
}
and strangely,
-click on wallpapers
-click on algopolis
is correctly working in every browsers
thks in advance for any tips