Wednesday 13 November 2013

Form submissions in IE8 not working? check the buttons....

So for those of us who still have to put up with IE8 (Personally, i'd rather shoot myself in the face than have to deal with this nonsense) and your form submissions arn't working, check this little beauty:

<form>
      my form controls.....
      <button type="submit">mysubmitbutton and its icons</button>
</form>

click the submit button in IE 8 and no worky.... reason being is IE8 needs an input tag of type submit so if you find this, try changing your button to an input instead or at least putting a hidden input tag in there.

Joy !