Re: [PHP] Javascript Mouseover Help NOT A JAVASCRIPT QUESTION

2004-03-18 Thread Raditha Dissanayake
It's not a javascript question, or problem. As I said in my original post, it works fine if it's a regular html file. But when I put it in a variable in php, then use that variable from an included file, the javascript is not executed. What can I do to fix this? Like i said you have to

Re: [PHP] Javascript Mouseover Help

2004-03-18 Thread Marek Kilimajer
Jake McHenry wrote: Hi everyone, How can I get around my problem? I have a couple pages that I would like to have buttons where the button and background changes when the javascript mouseover event happens. My code works fine if the page is .html, but when I try it as php, the mouseovers no

Re: [PHP] Javascript Mouseover Help NOT A JAVASCRIPT QUESTION

2004-03-18 Thread Raditha Dissanayake
Raditha Dissanayake wrote: It's not a javascript question, or problem. As I said in my original post, it works fine if it's a regular html file. But when I put it in a variable in php, then use that variable from an included file, the javascript is not executed. What can I do to fix

Re: [PHP] Javascript Mouseover Help

2004-03-17 Thread Raditha Dissanayake
Jake McHenry wrote: Hi everyone, How can I get around my problem? I have a couple pages that I would like to have buttons where the button and background changes when the javascript mouseover event happens. My code works fine if the page is .html, but when I try it as php, the mouseovers no

Re: [PHP] Javascript Mouseover Help NOT A JAVASCRIPT QUESTION

2004-03-17 Thread Jake McHenry
- Original Message - From: Raditha Dissanayake [EMAIL PROTECTED] To: Jake McHenry [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, March 18, 2004 12:35 AM Subject: Re: [PHP] Javascript Mouseover Help Jake McHenry wrote: Hi everyone, How can I get around my problem? I have

Re: [PHP] Javascript Mouseover Help NOT A JAVASCRIPT QUESTION

2004-03-17 Thread Terence
] Javascript Mouseover Help NOT A JAVASCRIPT QUESTION - Original Message - From: Raditha Dissanayake [EMAIL PROTECTED] To: Jake McHenry [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, March 18, 2004 12:35 AM Subject: Re: [PHP] Javascript Mouseover Help Jake McHenry wrote: Hi

RE: [PHP] Javascript Mouseover Help

2004-03-17 Thread Clifford W. Hansen
Jake, Personally I don't use the EndHTML things... Try using something like this: [code] $tableheaderformat = EndFormat id=JMTS bgcolor=#ABCED6 onmouseover=if(document.layers) { document.layers['JMTS'].bgColor='#EE' } else { if(document.all) { document.all['JMTS'].

RE: [PHP] Javascript Mouseover Help

2004-03-17 Thread Clifford W. Hansen
, March 18, 2004 8:56 AM To: Clifford W. Hansen Subject: Re: [PHP] Javascript Mouseover Help In my post, EndFormat was on it's own line. Outlook express probably screwed it up. and I'm not seeing where you added a closing ? The javascript worked fine, thats not the problem, it's just somehow not being

Re: [PHP] Javascript Mouseover Help

2004-03-17 Thread Tom Rogers
Hi, Thursday, March 18, 2004, 1:08:27 PM, you wrote: JM Hi everyone, JM How can I get around my problem? I have a couple pages that I JM would like to have buttons where the button and background changes JM when the javascript mouseover event happens. My code works fine if JM the page is .html,