<html>
<script type='text/javascript'>
var ttxText = document.getElementById('ttx').innerHTML;
function openas() {
mywindow = open('','newokno','width=700,height=700,status=1,menubar=1');
mywindow.document.open();
mywindow.document.write('<html><head><title>Создаём хтмл-документ');
mywindow.document.write('</title></head><body>');
mywindow.document.write(ttxText);
mywindow.document.write('Это статичный текст');
mywindow.document.write('</body></html>');
mywindow.document.close();
}
</script>
<body>
<div="ttx">Это произвольный текст, который как раз должен выводиться в новом окне</div>
<input type="button" value='Открыть окно' onclick="openas()">
</body>
</html>
Сделал так, в результате выдается:
undefinedЭто статичный текст
Подскажите, что не так?