I added this to the index.html file of the game and yes the notepad appears when i open the page but i can't write anything down.
</script>
<script type="text/javascript">
document.querySelector('#content').innerHTML =
var area = document.createElement('textarea');
area.style.width = '300px';
area.style.height = '150px';
document.querySelector('#content').appendChild(area);
</script>When i delete the game's codes the script works on its own. But i couldn't make it to make them work at the same time.
There is one more thing... Only when i extract the "<meta charset="utf-8"/>" code from the index.html file,the script works but the game goes. But i want both of them to work please help me...











