I hope someone can shed some on light on the following issue.
I have a page which includes the Prototype library. Also on this page is a collapsible menu, which comes from http://www.lousyllama.com/sandbox/collapsible-menu. The first menu at left is in use. I had to modify the original jQuery code to get the collapsible menu to work on jQuery 1.4.2.
Problem:
An exception is being thrown (by the jQuery framework?):
Line: 464 Error: Array length must be assigned a finite positive number
By removing slideToggle(), the exception is not thrown.
jQuery(document).ready(function() {
// Toggle the selected menu's class and expand or collapse the menu jQuery("#rd_menu_sample > li > a").mouseover(function() { jQuery(this).toggleClass("expanded").find("+ ul").slideToggle("medium"); });