I was wondering if it would be possible to get the page name from the address bar using jquery or javascript. I know this can be done using PHP but don\'t really want to as
Try this:
var pageName = (function () { var a = window.location.href, b = a.lastIndexOf("/"); return a.substr(b + 1); }());