[jQuery] AJAX & callbacks: load(); $.get() and $.post() do not

[jQuery] AJAX & callbacks: load(); $.get() and $.post() do not


$.get() and $.post() functions work for me *except* when I supply a
callback function as the third parameter.
I can pass in exactly the same set of arguments that work for a load()
function to $.get() and $.post() and they do not work.
Has anyone else experienced this?
If so, does anyone have a work-around?
I'm using jQuery 1.3.2.
For example ...
This works ...
$('div.status').load('/quotations/RegisterServlet', parameters,
register_submitCallback);
This does not work ...
$.post('/quotations/RegisterServlet', parameters,
register_submitCallback);