Heres my Situation.
Im trying to relaod a div in a page with load().
I first tryed with a GET. Worked fine with Firefox but not IE8.
After a bit of reading, i found out that i had to POST my PARAM so i went on and did a POST.
The result is just the same. It wont work in IE8. Here is the line im using for the POST.
$(\'#test_1\').load( \'../ajax_http.php\',{variable2:xload})
Firebug, (firefox debug add-on), Is seeing the action as a POST and see the PARAM value So its going trough as a POST but still not working in IE8.
This is the actual line im using:
echo '<div id="test_1" class="test_1" OnClick="$(\'#test_1\').load( \'../ajax_http.php\',{variable2:xload});">';
Any ideas?