Let me clarify my question, and the solution I'm looking for. I'm using wikispaces.com, and I would like to dynamically add a unique body class for every page using jQuery that somehow grabs the URL, and then inserts that unique body class that would be applied specifically and only for that page.
So, here's an example url from my wikispace...
http://wikithemes.wikispaces.com/Audio+Page
I'd like the jQuery to grab... let's say the first word after the .com/, which on this page would be audio. So, the jQuery I need would apply the class audio to the body tag, like so...
<body class="audio">
In their documentation, any jQuery can be inserted since it is loaded by default. But they clarify in saying that instead of the $ sign used within jQuery, it will only work within wikispaces if you use the word jQuery instead. Like this...
jQuery(document).ready(function(){
I really appreciate any help you can give me on getting this to work. Thanks!