jQuery Form Problem
I have developed a form using jQuery, HTML and a C# and ASPX back-end.
It works fine on Firefox and other W开发者_StackOverflow中文版eb browsers but if fails on Internet Explorer and don't know why.
I have tryied everything.
The URL is Web Form
Any ideas??
Thanks!!
The button is an input type="button"
. Perhaps it should be input type="submit"
? Don't know if IE has problems with type=button
This may not be the entire problem, but I don't think you should use a body onload method. Use the built in jQuery option that is more cross browser:
$(document).ready(function() {
// onload logic here
});
精彩评论