This is main.html
<body>
<iframe id="frame" src="frame.html"></iframe>
<script type="text/javascript">
document.getElementById('frame').contentWindow.document.getElementById('test').innerHtml = 'abcdefgh';
</script>
</body>
And this is frame.html
<body>
<p id="test">0123456798</p>
<script type="text/javascript"></script>
</body>
Error: Uncaught TypeError: Cannot set property 'innerHTML' of null
Why did not work , AND how can I change id="test"
text