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
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
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)
{
3 matches
Mail list logo