JavaScript & php question - mainly JS though so slightly OT but hep needed!!! :o)
Martin Hughes 19 December 2001 02:54:04
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??
Martin Towell 19 December 2001 03:05:32 [ permanent link ]
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:mth100@orange.net] Sent: Wednesday, December 19, 2001 9:54 AM To: php-general@lists.php.net 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: php-general-unsubscribe@lists.php.net For additional commands, e-mail: php-general-help@lists.php.net To contact the list administrators, e-mail: php-list-admin@lists.php.net
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" <martin.towell@world.net> To: "'Martin Hughes'" <mth100@orange.net>; <php-general@lists.php.net> 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:mth100@orange.net]> Sent: Wednesday, December 19, 2001 9:54 AM> To: php-general@lists.php.net> 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: php-general-unsubscribe@lists.php.net> For additional commands, e-mail: php-general-help@lists.php.net> To contact the list administrators, e-mail: php-list-admin@lists.php.net>
the bad thing is, it will still stop the browser from finishing the loading of the page.
----- Original Message ----- From: "Mark" <maggelet@mminternet.com> To: <jimphp@bend.com>; "Martin Towell" <martin.towell@world.net>; <mth100@orange.net>; <php-general@lists.php.net> 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.>
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.>
----- Original Message ----->From: "Martin Towell" <martin.towell@world.net>>To: "'Martin Hughes'" <mth100@orange.net>; <php->general@lists.php.net>>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:mth100@orange.net]>> Sent: Wednesday, December 19, 2001 9:54 AM>> To: php-general@lists.php.net>> 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: php-general-unsubscribe@lists.php.net>> For additional commands, e-mail: php-general-help@lists.php.net>> To contact the list administrators, e-mail: php-list->>admin@lists.php.net>>
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.>
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.>
----- Original Message ----->From: "Martin Towell" <martin.towell@world.net>>To: "'Martin Hughes'" <mth100@orange.net>; <php->general@lists.php.net>>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:mth100@orange.net]>> Sent: Wednesday, December 19, 2001 9:54 AM>> To: php-general@lists.php.net>> 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: php-general-unsubscribe@lists.php.net>> For additional commands, e-mail: php-general-help@lists.php.net>> To contact the list administrators, e-mail: php-list->>admin@lists.php.net>>
"Martin Hughes" <mth100@orange.net> wrote in message news:20011218225121.91283.qmail@pb1.pair.com...> 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??>
If you would like to report an abuse of our service, such as a spam message, please . Если Вы хотите пожаловаться на содержимое этой страницы, пожалуйста .