I find a strange behavior in Chrome.
I have Form to Edit a Record Details.
When user clicks on Edit in a list of Records Grid. my Page loads a Form with all the details
of the record loaded in the form.
here comes the interesting problem.
If i don’t edit any fields in the form and just clicks submit button.
Everything works fine.
But if I Edit any input field and then click submit.
Then chrome is not submitting the form.
It works absolutely fine in IE
I tried changing my Submit Button
<input type="submit" value="Continue" name="submit" class="standard button" id="ContinueButton" onclick="isValidDate()">
to
<input type="submit" value="Continue" name="submit" class="standard button" >
But No Use
Further Observation.
I notice. i have different text area, text box, date filed. I can change any filed and submit the form with no problem.
But if i change the quantity field and Submit then it wont work.
Can you try changing the name of the button from submit to something else like btnSubmit and try?
That should work.