Skip to content

Instantly share code, notes, and snippets.

@mspreij
Created February 26, 2015 13:22
Show Gist options
  • Select an option

  • Save mspreij/4bce13eb41a6d16e9dfa to your computer and use it in GitHub Desktop.

Select an option

Save mspreij/4bce13eb41a6d16e9dfa to your computer and use it in GitHub Desktop.
var data = {
act: 'list',
category: 'jazz'
};
$.post('/ajax.php', data, function(result) {
if (result.success) {
// do things with result.data
}else{
alert('Error: ' + result.message);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment