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 get the function with the data in it to work
>
> > $("a.rater").click(function(event)
> >         {
> >                 $.post($(this).attr("href")),
> >                         function(data)
> >                         {
> >                    update = data.split('|');
> >                   $('#'update[0]).replaceWith(update[1]);
> >                         };
> >                 return false;
> >         }
> > );
>
> What does Firebug report that the response from the post is?

Reply via email to