Skip to content

Instantly share code, notes, and snippets.

@0x46616c6b
Created March 15, 2012 18:57
Show Gist options
  • Save 0x46616c6b/2046036 to your computer and use it in GitHub Desktop.
Save 0x46616c6b/2046036 to your computer and use it in GitHub Desktop.
function getNumberOfPosts() {
var ajaxUrl, result;
ajaxUrl = getAjaxUrl();
return $.ajax({
url: ajaxUrl,
type: 'GET',
data: {"action": "numberofposts"},
dataType: "text",
complete: function(data) {
return data.responseText;
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment