[jQuery] Re: Using jquery to construct menus like nbc.com

2009-01-07 Thread Ted
PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Using jquery to construct menus like nbc.com I used your mouseenter and mouseleave function, but I'm still having issues with the menus disappearing when the user mouses off the top level item, and in to the lower level list items

[jQuery] Re: Using jquery to construct menus like nbc.com

2008-12-08 Thread Ted
Ofserpicolugnut Sent: Tuesday, November 25, 2008 11:04 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Using jquery to construct menus like nbc.com Here's a link to a simplified version of the code. The mouseenter/mouseleave events helped, but I'm seeing some strangeness on the first

[jQuery] Re: Using jquery to construct menus like nbc.com

2008-12-02 Thread serpicolugnut
To: jquery-en@googlegroups.com Subject: [jQuery] Re: Using jquery to construct menus like nbc.com I used your mouseenter and mouseleave function, but I'm still having issues with the menus disappearing when the user mouses off the top level item, and in to the lower level list items (containing

[jQuery] Re: Using jquery to construct menus like nbc.com

2008-12-01 Thread serpicolugnut
11:04 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Using jquery to construct menus like nbc.com Here's a link to a simplified version of the code. The mouseenter/mouseleave events helped, but I'm seeing some strangeness on the first menu item, and then some flickering

[jQuery] Re: Using jquery to construct menus like nbc.com

2008-12-01 Thread Jeffrey Kretz
@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of serpicolugnut Sent: Monday, December 01, 2008 4:52 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Using jquery to construct menus like nbc.com I used your mouseenter and mouseleave function, but I'm still having issues with the menus

[jQuery] Re: Using jquery to construct menus like nbc.com

2008-11-25 Thread RyOnLife
Have you looked at the Son of Suckerfish method? http://htmldog.com/articles/suckerfish/dropdowns/ Might be a good starting point to get everything working, then you can customize the CSS to get whatever look you're going for. On Nov 25, 10:07 am, serpicolugnut [EMAIL PROTECTED] wrote: I'm

[jQuery] Re: Using jquery to construct menus like nbc.com

2008-11-25 Thread Liam Potter
bind a mouseenter function to the menu div, then a mouseleave function to the sub menu. Ted wrote: I have, and have used the suckerfish method before. The problem is I've already created the CSS for the menus based upon them living each in their own div, and would like to engineer them based

[jQuery] Re: Using jquery to construct menus like nbc.com

2008-11-25 Thread Ted
I have, and have used the suckerfish method before. The problem is I've already created the CSS for the menus based upon them living each in their own div, and would like to engineer them based upon that as opposed to having to recode the CSS based upon another method. Basically my HTML looks

[jQuery] Re: Using jquery to construct menus like nbc.com

2008-11-25 Thread Jeffrey Kretz
If you have a sample url of your code, that would be helpful. But at a guess, the flyout div is probably not a child of the main menu element, so the mouseenter and mouseleave won't work properly. If this is the case, it will require a minor change to the hover plumbing. The z-index with flash

[jQuery] Re: Using jquery to construct menus like nbc.com

2008-11-25 Thread serpicolugnut
Here's a link to a simplified version of the code. The mouseenter/mouseleave events helped, but I'm seeing some strangeness on the first menu item, and then some flickering on the others. http://dl.getdropbox.com/u/21984/menu_test.html Jeffrey Kretz wrote: If you have a sample url of

[jQuery] Re: Using jquery to construct menus like nbc.com

2008-11-25 Thread Jeffrey Kretz
-Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of serpicolugnut Sent: Tuesday, November 25, 2008 11:04 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Using jquery to construct menus like nbc.com Here's a link to a simplified version of the code

[jQuery] Re: Using jquery to construct menus like nbc.com

2008-11-25 Thread serpicolugnut
Wow - Thanks Liam. That worked like a charm. Liam Potter wrote: bind a mouseenter function to the menu div, then a mouseleave function to the sub menu. Ted wrote: I have, and have used the suckerfish method before. The problem is I've already created the CSS for the menus based