Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save laurenclark/da0435524a39fb9485e592ec5a3a8d6c to your computer and use it in GitHub Desktop.
Save laurenclark/da0435524a39fb9485e592ec5a3a8d6c to your computer and use it in GitHub Desktop.
Current page from url
var $url = $(location).attr('href');
var str = $url;
var tmp = str.split("/");
var page = +tmp.pop() + 1;
$('#pageNo').html("Current Page: <strong>" + page + "<strong>");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment