I am working on a site written in PHP / MySQL. We have the opportunity to reserve time on the calendar, and it works fine in Mozilla and saves the reservation in our database, but in IE you fill out the form and when you click the "Reserve" button to send it, nothing happens. All I can think of is that my javascript is not working with IE. I have these lines in a .js file:
resLenT = document.getElementById(resLenElem);
resLenI = resLenT.selectedIndex;
resLen = resLenI + 1;
where resLenElem is a drop-down list. These are the only lines that I can think of at the moment that can cause problems in IE. Does it all sound like I'm on the right track or I don't have a base?
Jacob source
share