matt wrote:
> Hi, im currently styling a menu using a java script effect which hides
> the nested submenus on load, and also shows/hides them on mouseover.
> It is working in firefox, using  ...
>
> var ul = $("nav").getElementsByTagName("ul")[0];
>
> var lis = ul.immediateDescendants();
> ...
>   
try this:

var ul = $("nav").getElementsByTagName("ul")[0];
var lis = $(ul).immediateDescendants();

The ul is not extended in IE until you explicitly run it through $()

- Ken

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Spinoffs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to