[jQuery] Re: $.post callback broken in safari in new window.open()

2009-08-05 Thread akume
i'm having a similar problem with $.get. the callback isn't fired for safari 4. -akume Thomas Bircher wrote: > > > hello > > I'm opening a new window with window.open() > In the new window a file is loaded with the following post data > function: > > function ajaxPost(url,data){ >

[jQuery] Re: $.post() callback

2009-03-07 Thread bart
Thanks for your reply.I reviewed the code and it was a structure problem, I've set a few things up differently and now it works. Thanks :) On Mar 6, 10:01 am, James wrote: > I don't see any issues with the code you posted. I suggest try > removing some code from inside-out to debug. Start by rem

[jQuery] Re: $.post() callback

2009-03-06 Thread James
I don't see any issues with the code you posted. I suggest try removing some code from inside-out to debug. Start by removing the AJAX portion. Does it still follow through on the href? If not, it's the AJAX. Is so, something else is wrong. Remove the confirm, and test. Etc. On Mar 6, 2:56 am, ba

[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) >                         { >