Hi,
I'm hoping someone on this list can offer some help. I have a page that uses ajax to loads a form (id: "editform") into a jQuery-ui dialog box. The dialog box has a button attached - when someone changes the form and clicks this button it triggers a function which serializes() the data and sends via $.post to replace a div on the page with the results. This works fine in every browser I've tested on except...wait for it...IE (all versions). The problem seems to be that IE is not recognizing the call to serialize this form.
alert($("#editform").serialize();
gives me "" in IE, but the desired long querystring in other browsers. I've also tried to grab the data one piece at a time,
alert($("#name").val());
Again - IE does not recognize this field, returning "" while the other browsers output the data I'm looking for.
Any ideas?
Thanks