Skip to content

Instantly share code, notes, and snippets.

@BlackMac
Created March 30, 2009 11:06
Show Gist options
  • Save BlackMac/87739 to your computer and use it in GitHub Desktop.
Save BlackMac/87739 to your computer and use it in GitHub Desktop.
Ganz einfacher Ajax Request 2.0
new Ajax('url',{
'sgjson':true, // soll res bei onComplete json sein?
'windowspinner':true, // großen spinner auf dem Fenster anzeigen?
'data':{ // Diese Daten werden der Action als post übergeben
'x':'y',
'z':'a'
},
'onComplete':function(res) {
// res ist bereits als json geparsed!
}
}).request();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment