Can someone please tell me why this works:
document.body.i nnerHTML =
"<table><tr><th >one</th></tr><tr><td>two</td></tr></table>";
But this does not work:
document.body.i nnerHTML = "<table><tr >";
document.body.i nnerHTML = document.body.i nnerHTML +
"<th>one</th></tr><tr><td>two</td></tr></table>";
Thanks
document.body.i nnerHTML =
"<table><tr><th >one</th></tr><tr><td>two</td></tr></table>";
But this does not work:
document.body.i nnerHTML = "<table><tr >";
document.body.i nnerHTML = document.body.i nnerHTML +
"<th>one</th></tr><tr><td>two</td></tr></table>";
Thanks
Comment