I have a simple vertical menu and I'm using the .toggle() function to expand/collapse the submenu. It works in FF and Safari, but not in IE. (none of the IE's)
I also have a very simple "slideshow" function also using jquery, and it seems to be working in all browsers.
Website is live: http://www.fastpartsauto.com
Code:
<script type="text/javascript">
$(document).ready(function(){
$("#menu h3").click(function(){
menu = $(this).parent('li').children('ul');
menu.toggle('normal');
});
$('#featured_list').innerfade({
speed: 'slow',
timeout: '8000',
type: 'sequence',
containerheight: '290px'
});
});
</script>
HTML is a simple UL but I can't post it because I'm a new user and only allowed 1 hyperlink.