Skip to content

Instantly share code, notes, and snippets.

View ypsilon-p's full-sized avatar

Yannik Preiß ypsilon-p

  • Cologne
View GitHub Profile
jQuery.post(
my_foobar_client.ajaxurl,
{
'action': 'foobar',
'foobar_id': 123
},
function(response) {
console.log('The server responded: ', response);
}
);