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

2009-07-10 Thread Thomas Bircher
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){ $.post(url,data, function(data){ alert(data) }); , "json"); } If I call this function form wit

[jQuery] $.post() callback

2009-03-06 Thread bart
Hi all, I'm running into some trouble using the jquery $.post function. I'm using it in my CMS to delete a page record and after the deletion to display the updated page with the just deleted page removed ofcourse. Needless to say AJAX comes in handy here because of the page refresh. Here's my c

[jQuery] $.post callback problem

2008-09-11 Thread Tom Shafer
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) {