[jQuery] Ajax parameters

[jQuery] Ajax parameters

Hi,
Is it possible to send parameters to the server using $.ajax()? I
don't want to add params to the URL BTW. I'm trying with this, but no
param is available on server-side:
    $.ajax({
        url: "/someUrl",
        type: "GET",
        data: "a=aa&b=bb",
        error: function() {alert('eerrrr');},
        success: function(http) {},
        complete: function() {}
    });
Thanks.
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/