I am using php and mysql and am having difficulty using window.open () . I
have cut the code down to the basics.
Why does a new window not open?
Thanks.
-David r

<html>
<script language="JavaScript">
function boo() {
  window.open ("www.google.com");
}
</script>

<head>
<body onload="boo()">
  why does no window open?
</body>
</html>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to