I have a webpage I have created using PHP and Javascript. In Firefox, the dropdown lists and input button don't work unless I manually tab to the controls and use my arrow keys and enter button. Is this due to an incompatibility with Firefox?
Thanks in advance,
Mapper
ps..here is the link: http://www.laudontech.com/cemmap
pss..hope I don't get booted for posting a link!
Does Firefox support PHP based pages?
Moderator: General Moderators
Re: Does Firefox support PHP based pages?
Really odd, I see what you're talking about. It's not a PHP issue, it's an HTML / JS issue, but I'm not sure what. Try adding an id attribute to your SELECT tag, e.g.
I'm somewhat confused by your choice of page layout and forgoing the use of Javascript to select map points; if the user has JS disabled, they can't see the map anyway. It'd be so easy to use an event handler on the SELECT to dynamically load and view points on the map.
BTW, Firefox does not support PHP scripts. Firefox does support most content that PHP can output, however, such as XML / XHTML / HTML / CSS etc. PHP is server side; the only application that understands it is the httpd server (well, unless you're using it from the console or in a GTK app, which is irrelevant here).
Code: Select all
<select id="Deceased" name="Deceased">
BTW, Firefox does not support PHP scripts. Firefox does support most content that PHP can output, however, such as XML / XHTML / HTML / CSS etc. PHP is server side; the only application that understands it is the httpd server (well, unless you're using it from the console or in a GTK app, which is irrelevant here).
Re: Does Firefox support PHP based pages?
There's an issue with your second <div> tag. That tag 'cover' the area on top of your drop down list.
One way to fix the problem is by removing the four <br> tags just before the second div's closing tag.
One way to fix the problem is by removing the four <br> tags just before the second div's closing tag.
Re: Does Firefox support PHP based pages?
Thanks Whizzopia...I am a newbie at this and my coding standards are horrific!
Cheers,
Mapper
Cheers,
Mapper