[PHP] Javascript question

2009-03-02 Thread Boyd, Todd M.
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 not sure this is

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

[PHP] Javascript Question

2004-06-07 Thread GodFoca
Hey! Sorry for the OT, but since there seems to be no js newsgroup in gmane, I thought maybe someone in here could answer this simple question. I am trying to use javascript's print() to print a frame FROM ANOTHER frame. This is the layout: frameset rows=*,40 frameborder=NO border=0

Re: [PHP] Javascript Question

2004-06-07 Thread Gabino Travassos
, 2004 8:47 AM Subject: [PHP] Javascript Question Hey! Sorry for the OT, but since there seems to be no js newsgroup in gmane, I thought maybe someone in here could answer this simple question. I am trying to use javascript's print() to print a frame FROM ANOTHER frame. This is the layout

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

[PHP] Javascript question

2003-11-20 Thread Robin Kopetzky
I know this may be off-topic but I've got a problem that I do not know how to work around... I'm displaying a SELECT list and the problem is getting the value back after an 'onChange' event. Code is like this: HTML HEAD SCRIPT LANGUAGE=JAVASCRIPT !-- function jump() {

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,

[PHP] JavaScript question

2003-11-02 Thread Robin Kopetzky
Good morning. I know this may be off-topic but I don't know where to turn. I'm building a dynamic web page system with PHP and need to figure out in JavaScript how to do something. I have the timer figured out in JavaScript but what I need is a way to automatically submit a request back to the

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

[PHP] Javascript question...

2002-03-01 Thread Philip Jeffs
Hi, I know this is a PHP list but i thought someone might be able to help me out. I was looking at the Levi's website the other day and i noticed a cool script on there for opening pop-ups. They have managed to get rid of the usual window borders altogether and it looks really good. They

RE: [PHP] Javascript question...

2002-03-01 Thread Sven Jacobs
: Philip Jeffs [mailto:[EMAIL PROTECTED]] Sent: vendredi 1 mars 2002 12:41 To: PHP LIST Subject: [PHP] Javascript question... Hi, I know this is a PHP list but i thought someone might be able to help me out. I was looking at the Levi's website the other day and i noticed a cool script

[PHP] Javascript question

2001-10-29 Thread Rosen
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 automaticly to convert char in lowercase ) Thanks, Rosen -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

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 que

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

[PHP] javascript question

2001-03-12 Thread Miguel Loureiro
Hello all, I have a small problem, when using IE4.0 the property, in javascript, document.name_form_nameRadio[n].DISABLED it woks fine, but in Netscape 4.6 it dont. Anyone can give an ideia or an url for more information. I know that this isn't a php question, sorry. T.Y. all Miguel