On Tue, Nov 18, 2003 at 04:48:20PM +0200, David R wrote:
: 
: 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?
: 
: <html>
: <script language="JavaScript">
: function boo() {
:   window.open ("www.google.com");
: }
: </script>
: 
: <head>
: <body onload="boo()">
:   why does no window open?
: </body>
: </html>

1. try window.open("http://www.google.com/";)

2. try onload='window.open("http://www.google.com/";);'

3. what browser are you using?

4. have you tried the same browser on other machines?

5. have you tried different browsers?

6. have you tried different browsers on other machines?

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

Reply via email to