$.post() and IE 9

$.post() and IE 9

Hello,

I am using jquery 1.5.1
have this function 
  1. function foo(section)
  2. {
  3.  $.post
  4.  ( "/",
  5.    { task: 'section',
  6.      section: section
  7.    },
  8.    function(data)
  9.    { 
  10.      alert(data);
  11.    }
  12.  );

which works fine for every browser on every OS except IE 9 (9.0.8112.16421).
When the server returns an empty string, the popup pops up.
When the server returns something, nothing happens.

Any idea what the problem might be

Thank you
    • Topic Participants

    • jcxxr