jquery accordion and wordpress issue
Hey gang,
I've got the release candidate version of Wordpress installed. I've uploaded the latest (1.2.3) jquery version.
Here's the issue:
Moderator Edit: Link contains NSFW images.
My sidebar on my home page works just as expected:
http://www.jestertunes.com/
The issue comes when you click through to an individual post, the sidebar no longer works. This is perplexing me because I'm not using a single.php file, and the index file is delivering the content. (in other words, same file, same function call, no work.)
The function calls happen in the header.php file:
<script type="text/javascript">
jQuery().ready(function(){
// applying the settings
jQuery('#theMenu').Accordion({
active: 'h3.selected',
header: 'h3.head',
alwaysOpen: false,
animated: true,
showSpeed: 400,
hideSpeed: 800
});
});
</script>
The application script is located here:
http://www.jestertunes.com/wp-content/t ... cordion.js
Can some one tell me what's going on or how to fix it?