Link to home
Start Free TrialLog in
Avatar of catonthecouchproductions
catonthecouchproductionsFlag for United States of America

asked on

jQuery Validation not working in IE

I am trying to get a form to validate here: http://www.quickcash123.com/payday.html

I am using jQuery and the jQuery Validation Plugin at: http://bassistance.de/jquery-plugins/jquery-plugin-validation/

In IE, it doesnt want to validate or submit. I have seen trailing "," at the end of } before and remove them and you're fine. But still nothing.

Any suggestions?

Thanks,

Ryan
ASKER CERTIFIED SOLUTION
Avatar of remorina
remorina
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
simply add type="submit" to button like:
<button style="border:none;" type="submit"><img src="images/submit.jpg" alt="" width="162" height="38"></button>

The default "type" for button is "button" for IE7.
Ref: http://www.w3schools.com/tags/tag_button.asp?PHPSESSID=0f8ce476e9d06dadaec7a80f0d08ec31
Avatar of catonthecouchproductions

ASKER

Thank you very much! worked Great.

Ryan