I am running LS 1.92+ Build 120405 (Ubuntu, Apache). I have a question with a google map that requires data input, for this I am using some custom JavaScript with a custom HTML form, this works perfectly.
However, the Next/Previous/Submit buttons on this question do not work on Internet Explorer, they work fine on Firefox and Chrome. I thought it was the JS causing the issue but have found it is the form itself or more precisely the closing form tag </form>.
The error I get is:
Message: 'document.limesurvey.move' is null or not an object
Here is the HTML that is causing the issue, note that this works as it should and LS works as it should if the closing form tag is removed:
<form name="maptype" action="">
<input type="text" id="address1id" name="address_one" />
<input type="text" id="address2id" name="address_two" />
<input type="button" name="mapsubmit" value="Get my route" onclick="getmap();" />
</form>
So I can get it to work but is there anyway I can resolve this so I am using the HTML correctly and getting LS to work?