jQuery: Ajax get with callback

July 14th, 2009 by jeremychone
$.get("test.cgi", { name: "John", time: "2pm" },
     function(data){
      alert("Data Loaded: " + data);
});

jQuery AJAX Get Doc

Leave a Reply