Forum Moderators: open
There is a java script in the html that my browser seems to ignore or rather my IE seems to igrnore the onload function.
The following script will not execute in my browser.
<head>
...
<script language="javascript">
function bustOut(){
var newWin = window.open("http://www.ssfcu.org", "subWindow","height=500,width=700,resizable=yes,scrollbars=yes");
}
</script>
</head>
<body onLoad="bustOut();">
Eat at Joe's
</body>
</html>
Same with a minor change.
It won't work if I set it up like this:
<head>
...
<script language="javascript">
function bustOut(){
var newWin = window.open("http://www.ssfcu.org", "subWindow","height=500,width=700,resizable=yes,scrollbars=yes");
}
window.onload = bustOut;
</script>
</head>
<body>
Eat at Joe's
</body>
</html>
It does work if I set it up like this, but I get error:
Not implemented.
<head>
...
<script language="javascript">
function bustOut(){
var newWin = window.open("http://www.ssfcu.org", "subWindow","height=500,width=700,resizable=yes,scrollbars=yes");
}
window.onload = bustOut();
</script>
</head>
<body>
Eat at Joe's
</body>
</html>
Can anyone help please?