[jQuery] IE6 .load posting not working

[jQuery] IE6 .load posting not working


Example:
http://www.andcuriouser.com/sandbox/jquerypost/
I can't seem to get a string to post in IE6, as follows:
<a onclick="$('#result').load('post.php', 'id=1&awesome=2');">Save
changes</a>
This behaves as expected in Firefox, but IE6 doesn't receive a post at
all. "post.php" is simply:
<pre><?php
    echo "Posted: " . implode($_POST);
?></pre>
I'm using the latest Jquery library. Any thoughts?