I use $.post and $.ajax and it always works for me. Could you mention how you are passing parameters? That might be holding the key.
Ninad On Oct 13, 2:33 pm, James <james.gp....@gmail.com> wrote: > Could you define "does not work"? Does the request get sent at all? > > Without much information it's hard to help. What's in the variable > 'parameters' and 'register_submitCallback'? > > On Oct 13, 3:22 am, alexryan <alexander.j.r...@gmail.com> wrote: > > > $.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);