Re: [PHP] JavaScript php question - mainly JS though so slightly OT but hep needed!!! :o)

2001-12-19 Thread Martin Hughes

Many Thanks everyone!!

Mart



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] JavaScript php question - mainly JS though so slightly OT but hep needed!!! :o)

2001-12-18 Thread Martin Hughes

How could I write the function windowPopup(XX) where XX is a variable that
can change from link to link, for a popup info window to load a php file
with the variable XX in the url?

So the link would look like:
a href=javascript:windowPopup(XX);Link Text/a

and I want that link to open the page info.php?patch=XX in a new popup
window

Do I do it something like this, or is there a faster/better way??

Cheers  Merry X-Mas!

Martin



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] JavaScript php question - mainly JS though so slightly OT but hep needed!!! :o)

2001-12-18 Thread Martin Towell

if you have lots of links, then doing it this way, IMO, would be
easier/better - so:
script
 function windowPopup(xx) { window.open(info.php?patch=+xx, _new,
windowattribs); }
/script

but if there's only a few links, then placing the window.open code in the
link would be easiest, i think.

-Original Message-
From: Martin Hughes [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 19, 2001 9:54 AM
To: [EMAIL PROTECTED]
Subject: [PHP] JavaScript  php question - mainly JS though so slightly
OT but hep needed!!! :o)


How could I write the function windowPopup(XX) where XX is a variable that
can change from link to link, for a popup info window to load a php file
with the variable XX in the url?

So the link would look like:
a href=javascript:windowPopup(XX);Link Text/a

and I want that link to open the page info.php?patch=XX in a new popup
window

Do I do it something like this, or is there a faster/better way??

Cheers  Merry X-Mas!

Martin



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



Re: [PHP] JavaScript php question - mainly JS though so slightly OT but hep needed!!! :o)

2001-12-18 Thread Jim Lucas

actually Martin, that is what Martin was doing.
href=javascript:function_name()  calls to a js function.

my suggestion would be to write it this way.

a href=#no_hash onClick=YourFunction(xx)text/a

that way, if the client clicks the link/button before the page is done
downloading the page. it won't stop the page from finishing.  if you do it
the way you wrote below.  the page will stop downloading, including the
images that havn't finished.

Jim
- Original Message -
From: Martin Towell [EMAIL PROTECTED]
To: 'Martin Hughes' [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Tuesday, December 18, 2001 3:05 PM
Subject: RE: [PHP] JavaScript  php question - mainly JS though so slightly
OT but hep needed!!! :o)


 if you have lots of links, then doing it this way, IMO, would be
 easier/better - so:
 script
  function windowPopup(xx) { window.open(info.php?patch=+xx, _new,
 windowattribs); }
 /script

 but if there's only a few links, then placing the window.open code in the
 link would be easiest, i think.

 -Original Message-
 From: Martin Hughes [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, December 19, 2001 9:54 AM
 To: [EMAIL PROTECTED]
 Subject: [PHP] JavaScript  php question - mainly JS though so slightly
 OT but hep needed!!! :o)


 How could I write the function windowPopup(XX) where XX is a variable that
 can change from link to link, for a popup info window to load a php file
 with the variable XX in the url?

 So the link would look like:
 a href=javascript:windowPopup(XX);Link Text/a

 and I want that link to open the page info.php?patch=XX in a new popup
 window

 Do I do it something like this, or is there a faster/better way??

 Cheers  Merry X-Mas!

 Martin



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] JavaScript php question - mainly JS though so slightly OT but hep needed!!! :o)

2001-12-18 Thread Mark

On Tue, 18 Dec 2001 15:58:10 -0800, Jim Lucas wrote:
actually Martin, that is what Martin was doing.
href=javascript:function_name()  calls to a js function.

my suggestion would be to write it this way.

a href=#no_hash onClick=YourFunction(xx)text/a

better yet:
a href=javascript:void(0) onClick=YourFunction(xx)text/a

to keep weird browsers from doing things you don't expect (like
jumping to the top)

that way, if the client clicks the link/button before the page is
done
downloading the page. it won't stop the page from finishing.  if you
do it
the way you wrote below.  the page will stop downloading, including
the
images that havn't finished.

Jim
- Original Message -
From: Martin Towell [EMAIL PROTECTED]
To: 'Martin Hughes' [EMAIL PROTECTED]; php-
[EMAIL PROTECTED]
Sent: Tuesday, December 18, 2001 3:05 PM
Subject: RE: [PHP] JavaScript  php question - mainly JS though so
slightly
OT but hep needed!!! :o)


 if you have lots of links, then doing it this way, IMO, would be
 easier/better - so:
 script
 function windowPopup(xx) { window.open(info.php?patch=+xx,
_new,
 windowattribs); }
 /script

 but if there's only a few links, then placing the window.open code
in the
 link would be easiest, i think.

 -Original Message-
 From: Martin Hughes [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, December 19, 2001 9:54 AM
 To: [EMAIL PROTECTED]
 Subject: [PHP] JavaScript  php question - mainly JS though so
slightly
 OT but hep needed!!! :o)


 How could I write the function windowPopup(XX) where XX is a
variable that
 can change from link to link, for a popup info window to load a
php file
 with the variable XX in the url?

 So the link would look like:
 a href=javascript:windowPopup(XX);Link Text/a

 and I want that link to open the page info.php?patch=XX in a new
popup
 window

 Do I do it something like this, or is there a faster/better way??

 Cheers  Merry X-Mas!

 Martin



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: php-list-
[EMAIL PROTECTED]







--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] JavaScript php question - mainly JS though so slightly OT but hep needed!!! :o)

2001-12-18 Thread Jim Lucas

the bad thing is, it will still stop the browser from finishing the loading
of the page.

- Original Message -
From: Mark [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; Martin Towell [EMAIL PROTECTED];
[EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Tuesday, December 18, 2001 4:16 PM
Subject: Re: [PHP] JavaScript  php question - mainly JS though so slightly
OT but hep needed!!! :o)


On Tue, 18 Dec 2001 15:58:10 -0800, Jim Lucas wrote:
actually Martin, that is what Martin was doing.
href=javascript:function_name()  calls to a js function.

my suggestion would be to write it this way.

a href=#no_hash onClick=YourFunction(xx)text/a

better yet:
a href=javascript:void(0) onClick=YourFunction(xx)text/a

to keep weird browsers from doing things you don't expect (like
jumping to the top)

that way, if the client clicks the link/button before the page is
done
downloading the page. it won't stop the page from finishing.  if you
do it
the way you wrote below.  the page will stop downloading, including
the
images that havn't finished.

Jim
- Original Message -
From: Martin Towell [EMAIL PROTECTED]
To: 'Martin Hughes' [EMAIL PROTECTED]; php-
[EMAIL PROTECTED]
Sent: Tuesday, December 18, 2001 3:05 PM
Subject: RE: [PHP] JavaScript  php question - mainly JS though so
slightly
OT but hep needed!!! :o)


 if you have lots of links, then doing it this way, IMO, would be
 easier/better - so:
 script
 function windowPopup(xx) { window.open(info.php?patch=+xx,
_new,
 windowattribs); }
 /script

 but if there's only a few links, then placing the window.open code
in the
 link would be easiest, i think.

 -Original Message-
 From: Martin Hughes [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, December 19, 2001 9:54 AM
 To: [EMAIL PROTECTED]
 Subject: [PHP] JavaScript  php question - mainly JS though so
slightly
 OT but hep needed!!! :o)


 How could I write the function windowPopup(XX) where XX is a
variable that
 can change from link to link, for a popup info window to load a
php file
 with the variable XX in the url?

 So the link would look like:
 a href=javascript:windowPopup(XX);Link Text/a

 and I want that link to open the page info.php?patch=XX in a new
popup
 window

 Do I do it something like this, or is there a faster/better way??

 Cheers  Merry X-Mas!

 Martin



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: php-list-
[EMAIL PROTECTED]









-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] JavaScript php question - mainly JS though so slightly OT but hep needed!!! :o)

2001-12-18 Thread Mark

On Tue, 18 Dec 2001 16:16:20 -0800, Jim Lucas wrote:
the bad thing is, it will still stop the browser from finishing the
loading
of the page.

not in any browser I've tried.


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]