Problem:
I have a page that has a large form, and in the middle of it I have an image as an input. From that image I get the x and y coordinates for where the user clicked, do some calculation, and redirect to a different page. However when I use Google Chrome on this page I find that the x and y coordinates are not posted, and so this form doesn't work.
Question:
Is this typical behavior of Chrome or am I missing something? If it's a validation problem how can I figure out what the culprit is?
Example:
<form action="FORMACTION" name="MyForm" id="MyForm" method="get">
...
<input type="image" width="600" height="460" name="graphClick"
id="graphClick" src="IMAGESOURCE" alt="IMAGENAME" title="TITLETEXT"
onclick="goToPage('action');">
...
</form>
Note: goToPage is a javascript function to set the action of the form and submit it.