trying to run a block of javascript that includes an innerhtml update to a <td> inside a cfwindow popup window after the html but the innerhtml line errors. if i replace the innerhtml with an alert line - the alertbox shows just fine so the javascript executes.
the page trying to run in the cfwindow pop up is as simple as:
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="ffffff">
<tr>
<td>Current Total:</td>
<td id="newtotal">27</td>
</tr>
</table>
<script language="javascript">
var myTest = "88";
document.getElementById('newtotal').innerHTML = myTest;
</script>