Link to home
Start Free TrialLog in
Avatar of Chris Andrews
Chris AndrewsFlag for United States of America

asked on

Need help with firefox/chrome compatability.

I have a translation script at:

http://www.sure-start.com/test.html 

(uses google for translation)

It works on MSIE, but not with firefox and chrome.

I don't know if it's something simple, like something related to the form action, or something in the script.

Can you take a look?  The script is in the source code.  Any suggestions appreciated (I'm not very experienced with js, this is adapted from another script, didn't write it myself),

Thanks,  Chris
ASKER CERTIFIED SOLUTION
Avatar of gr8gonzo
gr8gonzo
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Quick note - if you ever come across a script that works in one browser but not in another, the first thing you should check for is missing IDs. A lot of people will fill in the "name" attribute but not the "id" attribute. MSIE will be able to find elements by name and ID, while other browsers will stick only to ID.
Avatar of Chris Andrews

ASKER

That was it!

Thank you very much, I really appreciate the help,

Chris