Another jQuery Ajax POST problem with Firefox

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

  1. $("#videoteaser").fadeOut("fast",function() {
  2. $.ajax({
  3. url:"/cgi-bin/skript/video/videoarchiv.snp",
  4. type:"POST",
  5. //processData:false,
  6. data: {"ETIKETT":etikett,"id":"<!-- #id# -->"},
  7. dataType:"html",
  8. //contentType:"text/plain",
  9. success: function(html) { 
  10. $('#videoteaser').html(html);
  11. $('#videoteaser').fadeIn('fast');
  12. }
  13. });
  14. });