I can't seem to get my innerHTML to display my content.
This works fine, if I was to put it all in one line.
If I was to break it up, which I wanted then nothing seem to show up.
Here's my code
thanks
This works fine, if I was to put it all in one line.
Code:
document.getElementById('addedText').innerHTML = '<table><tr><td>'+"My text goes here"+'</tr></td></table>';
If I was to break it up, which I wanted then nothing seem to show up.
Code:
document.getElementById('addedText').innerHTML = '<table><tr><td>';
document.getElementById('addedText').innerHTML = "My text goes here";
document.getElementById('addedText').innerHTML = '</tr></td></table>';
Here's my code
Code:
<html>
<head>
<script type="text/javascript">
function display() {
document.getElementById('addedText').innerHTML = '<table border=1><tr><td>';
document.getElementById('addedText').innerHTML = "My text goes here";
document.getElementById('addedText').innerHTML = '</tr></td></table>';
}
</script>
</head>
<body onload="display()">
<div id="addedText"></div>
</body>
</html>
thanks