I am trying to insert a table I recieve from an AJAX call using the Dojo framework, instead of formating the returned data into a table I have the option of getting the returned data as a formated table ex:<table> ... </table>
I am trying to insert this table into the table row of another table by doing document.getElementById("row").innerHTML=returnedData;
In firefox this works no problem, but with IE I get a Unknown Runtime Error. It also does not work from within a div tag. and I have put the returned string in html and body tags and the browser renders no problem
I am trying to insert this table into the table row of another table by doing document.getElementById("row").innerHTML=returnedData;
In firefox this works no problem, but with IE I get a Unknown Runtime Error. It also does not work from within a div tag. and I have put the returned string in html and body tags and the browser renders no problem