Nieuw lid |
|
Of je kan dit gebruiken in jQuery, het zit er standaard in:
$.post("test.cgi", { name: "John", time: "2pm" },
function(data){
alert("Data Loaded: " + data);
});
$.post("test.cgi", { name: "John", time: "2pm" }, function(data){ alert("Data Loaded: " + data); });
of simpeler:
$.post("test.php", { name: "John", time: "2pm" } );
$.post("test.php", { name: "John", time: "2pm" } );
Voor verdere informatie over jQuery zonder plugins: http://www.visualjquery.com ;) |