[jQuery] Re: $.post callback problem

2008-09-12 Thread Peter Edwards
It looks like you have a rogue parenthesis to me - $.post($(this).attr("href")) - the last closing parenthesis completes the $.post call, so your callback function will not fire. on 11/09/2008 21:49 Tom Shafer said:: > i am trying to use data i am getting back from $.post but I am not > able to

[jQuery] Re: $.post callback problem

2008-09-11 Thread Mike Nichols
I've had problems with not specifiying the 'data' to be sent to the server on a post ,ie: $.post(url,{data:{}}); You might try that and see if it fixes it On Sep 11, 3:32 pm, Mike Alsup <[EMAIL PROTECTED]> wrote: > > i am trying to use data i am getting back from $.post but I am not > > able to

[jQuery] Re: $.post callback problem

2008-09-11 Thread Mike Alsup
> i am trying to use data i am getting back from $.post but I am not > able to get the function with the data in it to work > > $("a.rater").click(function(event) >         { >                 $.post($(this).attr("href")), >                         function(data) >                         { >