Re: [PHP] Javascript question

2009-03-02 Thread Robert Cummings
On Mon, 2009-03-02 at 16:11 -0600, Boyd, Todd M. wrote: Before some of you newbies feel like being heroes and jump all over me: I KNOW THIS IS A PHP-RELATED LIST. IF YOU DON'T LIKE MY QUESTION, DON'T ANSWER IT. Now that that's out of the way... I have a Javascript question (and maybe a

RE: [PHP] Javascript question

2009-03-02 Thread Boyd, Todd M.
-Original Message- From: Robert Cummings [mailto:rob...@interjinn.com] Sent: Monday, March 02, 2009 4:18 PM To: Boyd, Todd M. Cc: PHP General list Subject: Re: [PHP] Javascript question On Mon, 2009-03-02 at 16:11 -0600, Boyd, Todd M. wrote: Before some of you newbies feel like

RE: [PHP] Javascript question

2009-03-02 Thread Boyd, Todd M.
-Original Message- From: Michael A. Peters [mailto:mpet...@mac.com] Sent: Monday, March 02, 2009 4:42 PM To: Boyd, Todd M. Cc: PHP General list Subject: Re: [PHP] Javascript question Boyd, Todd M. wrote: Before some of you newbies feel like being heroes and jump all over me

Re: [PHP] Javascript question

2009-03-02 Thread Michael A. Peters
Boyd, Todd M. wrote: Before some of you newbies feel like being heroes and jump all over me: I KNOW THIS IS A PHP-RELATED LIST. IF YOU DON'T LIKE MY QUESTION, DON'T ANSWER IT. Now that that's out of the way... I have a Javascript question (and maybe a Browser/DOM question) for you folks. I'm

Re: [PHP] Javascript Question

2004-06-07 Thread Gabino Travassos
I would do two things. 1. Test your print() function on the same frame. Create a div called printableText and see if you can print it. If that works, then your print() function is okay. 2. Test your targeting. Use a different function, such as trying to change the text or rollover an img in

Re: [PHP] JavaScript question

2003-12-24 Thread -{ Rene Brehmer }-
you can simply call: Window.location.href = 'http://yourdomain.com/phpscripttocall.php?variable1=value1variable2=value2' ^works in all browsers supporting JavaScript ... there's a few variants of this that will only work in IE or Netscape, but this one is vague enough to work in both... (not

Re: [PHP] Javascript question

2003-11-20 Thread Jason Wong
On Friday 21 November 2003 02:24, Robin Kopetzky wrote: I know this may be off-topic but I've got a problem that I do not know how to work around... Hey list moderators, can this list be renamed the php-general-javascript-and-the-kitchen-sink list? -- Jason Wong - Gremlins Associates -

RE: [PHP] Javascript question

2003-11-20 Thread Robin Kopetzky
Ah-hah! Jason hides under an email address that does not exist so one cannot reply directly to him, only via the list. Does that not describe the person well? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Javascript question

2003-11-20 Thread Mike Migurski
Ah-hah! Jason hides under an email address that does not exist so one cannot reply directly to him, only via the list. Does that not describe the person well? Insofar as he is cautious about spam, sure. - michal migurski-

RE: [PHP] Javascript question

2003-11-20 Thread Jay Blanchard
[snip] Ah-hah! Jason hides under an email address that does not exist so one cannot reply directly to him, only via the list. Does that not describe the person well? [/snip] I found Jason's reply to be humorous! You yourselef said that your request was off topic. What did you expect? Here is

Re: [PHP] Javascript question

2003-11-20 Thread John Nichel
Jason Wong wrote: On Friday 21 November 2003 02:24, Robin Kopetzky wrote: I know this may be off-topic but I've got a problem that I do not know how to work around... Hey list moderators, can this list be renamed the php-general-javascript-and-the-kitchen-sink list? My kitchen sink

Re: [PHP] Javascript question

2003-11-20 Thread Jason Wong
On Friday 21 November 2003 02:38, Robin Kopetzky wrote: Ah-hah! Jason hides under an email address that does not exist so one cannot reply directly to him, only via the list. Does that not describe the person well? My address only accepts mail directly from the list, cuts down on the spam

Re: [PHP] Javascript question

2003-11-20 Thread John Nichel
Robin Kopetzky wrote: Ah-hah! Jason hides under an email address that does not exist so one cannot reply directly to him, only via the list. Does that not describe the person well? Jason's actions describe him, not his email address. Jason is a valued member of this list and has helped

RE: [PHP] Javascript question

2003-11-20 Thread Jay Blanchard
[snip] My kitchen sink always gets clogged when we clean out the fridge. Does anyone know of a way I can fix that? ;) [/snip] $strSinkTrap = fopen(/under/the/cabinet/, w+); while(!feof($strSinkTrap)){ unscrewFittings($pipe); if($pipeUnscrewed == TRUE){

Re: [PHP] Javascript question

2003-11-20 Thread John Nichel
Jay Blanchard wrote: [snip] My kitchen sink always gets clogged when we clean out the fridge. Does anyone know of a way I can fix that? ;) [/snip] $strSinkTrap = fopen(/under/the/cabinet/, w+); while(!feof($strSinkTrap)){ unscrewFittings($pipe); if($pipeUnscrewed ==

Re: [PHP] Javascript question

2003-11-20 Thread Aaron Gould
$strSinkTrap = fopen(/under/the/cabinet/, w+); while(!feof($strSinkTrap)){ unscrewFittings($pipe); if($pipeUnscrewed == TRUE){ removeClog($hair, $grease, $grime); } } fclose($strSinkTrap); You may want to call the screwFittings

Re: [PHP] Javascript question

2003-11-20 Thread Brent Baisley
Funny off-off topic stuff. But to address the original question, which I deleted already, the problem is in your html, not your javascript. The syntax for selects is: select name=state_name onChange= option label=Colorado value=ColoradoColorado/option You had the name parameter in the option,

Re: [PHP] JavaScript question

2003-11-02 Thread Marek Kilimajer
Would Refresh header work for you? header('Refresh: 15; url=slides.php?page=2'); If you send this header the browser will navigate to slides.php?page=2 after 15 seconds without user intervension. Robin Kopetzky wrote: Good morning. I know this may be off-topic but I don't know where to turn.

RE: [PHP] JavaScript question

2003-11-02 Thread Jake McHenry
-Original Message- From: Marek Kilimajer [mailto:[EMAIL PROTECTED] Sent: Sunday, November 02, 2003 2:03 PM To: Robin Kopetzky Cc: PHP General Subject: Re: [PHP] JavaScript question Would Refresh header work for you? header('Refresh: 15; url=slides.php?page=2'); If you

RE: [PHP] Javascript question...

2002-03-01 Thread Sven Jacobs
script function openpopup(){ var popurl=url winpops=window.open(popurl,Solution,width=500,height=400,) } //openpopup() /script input type=submit value=Escalations onClick=openpopup() Kind Regards Sven -Original Message- From:

RE: [PHP] Javascript question

2001-10-29 Thread Fatih Ustundag
input type="text" value="" onKeyUp="this.value=this.value.toLowerCase()" -Original Message- From: Rosen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 9:51 AM To: [EMAIL PROTECTED] Subject: [PHP] Javascript question Hi, This is not a PHP question, but can someone help me

Re: [PHP] Javascript question

2001-10-29 Thread Christian Cresante
hello. javascript has a toLowerCase() method. just call this method using onsubmit. --- Rosen [EMAIL PROTECTED] wrote: Hi, This is not a PHP question, but can someone help me how to convert in lowercase the text into INPUT statment online ? (i.e. when the user press a key , the script