tags:

views:

34

answers:

2

Hello.

I have developed a form using jQuery, HTML and a C# and ASPX back-end.

It works fine on Firefox and other Web browsers but if fails on Internet Explorer and don't know why.

I have tryied everything.

The URL is Web Form

Any ideas??

Thanks!!

A: 

The button is an input type="button". Perhaps it should be input type="submit"? Don't know if IE has problems with type=button

seanizer
What I did was to dinamically and the onClick attribute to the button after all the fields are validated :S all works fine but when all fields are validated and the AJAX function that sends all the data to the server is sents nothing happens...
Jean Paul
A: 

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
});
partkyle