if use a ajax call,it's like this:
$.ajax({
   type: "POST",
   url: "some.php",
   data: "name=John&location=Boston",
   success: function(data){
     $("table").append(data);
     $("table").trigger("update");.......
   }
 });

hope helps.

Reply via email to