I've just upgraded to jQuery 1.3.2, which has mostly been fine, but I'm missing something when it comes to the new event model (I think)
$(document).ready(function()
{
$(".AspNet-Menu-NonLink").click(function()
{
$(this).next($("ul")).slideToggle("fast");
});
$(".AspNet-Menu-NonLink").next($("ul")).hide();
$(".AspNet-Menu-ChildSelected").next($("ul")).show();
});
This used to work, but the error "too much recursion" is popping out on this line:
$(".AspNet-Menu-NonLink").next($("ul")).hide();
How can this cause recursion, hide() hides something, what's to go wrong?
UPDATE
I've discovered that if I remove the references to jQuery UI 1.7.1 script library the problem goes away. Even if I'm not calling anything in the jQuery UI library, but have it included I get the error.