H
hakim
Hi,
My code:
<html>
<head>
<title>Test</title>
<script type="text/javascript">
function schreibschrift () {
var fenster = window.open("","neu","");
fenster.document.write('Hallo');
}
</script>
</head>
<body>
<table>
<script type="text/javascript">
schreibschrift();
</script>
</table>
</body>
</html>
When the new Window pops up, then it never stops to load. How I can
stop the loading of the window. It loads and loads...
Thanks...
My code:
<html>
<head>
<title>Test</title>
<script type="text/javascript">
function schreibschrift () {
var fenster = window.open("","neu","");
fenster.document.write('Hallo');
}
</script>
</head>
<body>
<table>
<script type="text/javascript">
schreibschrift();
</script>
</table>
</body>
</html>
When the new Window pops up, then it never stops to load. How I can
stop the loading of the window. It loads and loads...
Thanks...