Hello,
I am using jquery 1.5.1
have this function
- function foo(section)
- {
- $.post
- ( "/",
- { task: 'section',
- section: section
- },
- function(data)
- {
- alert(data);
- }
- );
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