tigre
tigre

Reputation: 353

Google Forms w/ jQuery Validate Not Submitting to Form in IE 7

In IE7, when a user fills out this Google Form w/ jq validate.js, and clicks the Submit button, the page navigates to the "success" page, but our form isn't showing the submitted content.

http://www.xtracycle.com/lifetime-freeradical-warranty-and-guarantee/

I read that IE 7 has issues with input elements having both a type and class/id/name of "submit", but when I try and change the button input's name, the Google js no longer submits the form content in FF or on my Mac.

Thanks for any insight into what issues IE 7 has with jq validate and Google Forms.

Upvotes: 1

Views: 895

Answers (1)

JoeFlash
JoeFlash

Reputation: 86

You are actually not using an input field for your submit button, it is a button object. Internet Explorer treats button objects a bit different from other browsers. This w3schools page addresses some of the issue.

HTML Button Tag

If you instead use an input field with a type of submit you will likely have less compatibility problems.

Upvotes: 3

Related Questions