Skip to content

Instantly share code, notes, and snippets.

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