Another jQuery Ajax POST problem with Firefox
Hello,
I'm stuck here. I built a pretty simple Ajax request which needs to send some data to the server and put the resulting HTML in a div. Unforunately, I need to POST the data. I used .post() and it worked fine ... *on Chrome and Opera!* ... on Firefox no data gets posted even though firebug shows the data in it's console. I ended up building the longest possible request, just to try all the options. No luck. As soon as I POST anything, Firefox won't receive the data. If this was a Firefox issue, wouldn't I read about it everywhere? What's wrong?
Any help is appreciated!
Thanks,
thomas
- $("#videoteaser").fadeOut("fast",function() {
- $.ajax({
- url:"/cgi-bin/skript/video/videoarchiv.snp",
- type:"POST",
- //processData:false,
- data: {"ETIKETT":etikett,"id":"<!-- #id# -->"},
- dataType:"html",
- //contentType:"text/plain",
- success: function(html) {
- $('#videoteaser').html(html);
- $('#videoteaser').fadeIn('fast');
- }
- });
- });