I have a URL like:
http://url.test.com/account/name/pages/Stuff.html
I want to take 'Stuff' and apply that as a class to body.
<body class="Stuff">
...
</body>
How can I get the current URL?
How can I extract the text 'Stuff' after the final '/'
Then add the class 'Stuff' to body?