L
laredotornado
Hi,
I have this HTML on my page
<table align="left" class="appAdmin dojoTabular">
<thead>
<tr>
<th align="center">Refresh URL</th>
<th align="center">Result</th>
</tr>
</thead>
<tbody id="thebody">
</tbody>
</table>
but when I execute the following JS on PC IE 7.0.5, I get a JS error
("Unknown runtime error") that doesn't occur on Firefox ...
var tbody = document.getElementById("thebody");
alert(tbody); // Produces "[object]"
tbody.innerHTML = ''; // JS error
I"m sure I'm missing something really obvious. Can you help? Thanks,
- Dave
I have this HTML on my page
<table align="left" class="appAdmin dojoTabular">
<thead>
<tr>
<th align="center">Refresh URL</th>
<th align="center">Result</th>
</tr>
</thead>
<tbody id="thebody">
</tbody>
</table>
but when I execute the following JS on PC IE 7.0.5, I get a JS error
("Unknown runtime error") that doesn't occur on Firefox ...
var tbody = document.getElementById("thebody");
alert(tbody); // Produces "[object]"
tbody.innerHTML = ''; // JS error
I"m sure I'm missing something really obvious. Can you help? Thanks,
- Dave