Parse url w/ js regex
//helper function $.parseUrl = function(str) { var match = str.match(/\/([^/]+)\/$/); var a = match[1]; return a; };