jquery ajax post


/ Published in: jQuery
Save to your folder(s)



Copy this code and paste it in your HTML
  1. $.post("test.php", { name: "John", time: "2pm" },
  2. function(data){
  3. process(data);
  4. }, "xml");
  5.  

Report this snippet


Comments


You need to login to view comments.