Updating...

Updating...

Hi, I use jQuery at work (thanks for this wonderful library!!) and now I'm updating to the 1.4.1 release.

First problem, this code does not work anymore:

  1. var hrefFirstNavLink = $("a.navlink:first").attr("href");
        $(".Expander").each(function(){
         var hrefVoce = $(this).attr("href").substring(0,$(this).attr("href").lastIndexOf("?"));
         if (hrefVoce==hrefFirstNavLink) { 
         $(this).parents().children().filter("a[href='#']").prev().click();
         $(this).css("font-weight","bold");
         }
        }); 

What do you think?

Regards