Nieuw lid |
|
Gets the test.php page content, store it in a XMLHttpResponse object and applies the process() JavaScript function.
$.post("test.php", { name: "John", time: "2pm" },
function(data){
process(data);
}, "xml");
heb ik veranderd door:
function subscribe(formulier) {
var email=formulier.email.value;
$.post("registreerSubscriber.php", "email=" + encodeURIComponent(email),
function(data){
process(data);
}, "xml");
$.post("test.php", { name: "John", time: "2pm" }, function(data){ process(data); }, "xml"); heb ik veranderd door: function subscribe(formulier) { var email=formulier.email.value; $.post("registreerSubscriber.php", "email=" + encodeURIComponent(email), function(data){ process(data); }, "xml");
M'n vraag is of die laatste parameter (xml) staat voor re request of voor de response?
En weet iemand wat " process(data);" juist doet?
Tzijn m'n eerste stappen in jquery dusja ben absolute noob
|