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
The Location object is your friend:
var pageName = location.pathname.substring(1);
http://www.w3schools.com/jsref/obj_location.asp