innerHTML:
The property is read/write for all objects except the following, for which it is read-only: COL, COLGROUP, FRAMESET, HTML, STYLE, TABLE, TBODY, TFOOT, THEAD, TITLE, TR.
fuck ie
js/ajax - 13/03/2007 @ 1:32
innerHTML:
The property is read/write for all objects except the following, for which it is read-only: COL, COLGROUP, FRAMESET, HTML, STYLE, TABLE, TBODY, TFOOT, THEAD, TITLE, TR.
fuck ie
|
Raja
William your solution is good. |
|
William
To solve “tr.innerHTML” doesn’t work in IE , below code works in firefox and IE |
|
diet plans
Dopo aver ricevuto una segnalazione da parte di VideoMarta – un blog molto interessante in cui una ragazza espone le sue considerazioni |
|
green tea
Sito che ho fatto per mia sorella aver ricevuto una segnalazione da parte di VideoMarta. |
|
Auto Insurance Quotes
Dopo aver ricevuto una segnalazione da parte di VideoMarta – un blog molto interessante in cui una ragazza espone le sue considerazioni |
|
Quadrant vans
You can try. |
TR innerHTML problem in IE.
table.tr.innerHTML = “namexxxx”; works in Firefox, but doesn’t work in IE.
Quick solution:
var table = document.getElementById(”yourtable”);
var rows = table.rows;
if(document.all) {
rows[0].swapNode(rows[1]); //
} else {
var t = rows[0].innerHTML;
rows[0].innerHTML = rows[1].innerHTML;
rows[1].innerHTML = t;
}