Http Request
Ein Ajax Schnipsel um einen http Request zu senden
|
Script: |
function SendeAnfrage(variable)
{
new Ajax.Request('Versand.php?variable='+variable, {
onSuccess: function(Antwort) {
document.getElementById('ZielID').innerHTML = Antwort.responseText;
} });
};
|
|