[jQuery] Using a load function with a post

[jQuery] Using a load function with a post


I am unsure as to how to make this work.
    var params = $('form#createAdjForm').serialize();
    var url = "<?= $this->url(array('controller'=>'create-adjustment',
'action'=>'index'))?>";
    $('#form').load(url,params);
I want my data POSTed but it is still sent as a get. What am I doing
wrong?