[jQuery] Re: Problem with binding mouseout to only parent div

2007-10-04 Thread Brandon
I don't know what's up with these groups but none of my replies are getting posted... Joel, I took a look at your code and your use of the timeout function was exactly what I needed. Thank you. Wizzud, Thanks for pointing out my mess between parent and children. I scratched that whole thing. If

[jQuery] Re: Problem with binding mouseout to only parent div

2007-10-04 Thread Brandon
Thanks Wizzud... i scratched that whole jumping up and down within the parents and children thing... it was overkill in the first place. Thanks for your help though! On Oct 4, 4:08 am, Wizzud <[EMAIL PROTECTED]> wrote: > Some ideas... > > Firstly, if you return false from any event handler it wil

[jQuery] Re: Problem with binding mouseout to only parent div

2007-10-04 Thread Brandon
Joel, The problem is I didn't want to spend another day or two rewriting my whole menu system and css files while trying to figure out another menu plugin. Mine is working just fine and has been tested and has worked in all browsers for over a year, i just wanted to convert the js to jquery to cu

[jQuery] Re: Problem with binding mouseout to only parent div

2007-10-04 Thread Wizzud
Some ideas... Firstly, if you return false from any event handler it will prevent default action and, more importantly, event bubbling. For example, if you had ... and you put mouseouts on both A and B, if the mouseout on B did NOT return false (or take some other measure to prevent bubbling/pro

[jQuery] Re: Problem with binding mouseout to only parent div

2007-10-03 Thread Joel Birch
Hi Brandon, Sorry for repeating a solution you have already looked at, but I want to make sure you have seen the relevant part of the Superfish docs. The only example that demonstrates the functionality of the current submenu path (breadcrumb path?) being restored when the menu has finished being

[jQuery] Re: Problem with binding mouseout to only parent div

2007-10-03 Thread Brandon
I tried replying to this earlier but it didn't post... I've looked at the suckerfish menu, and I'm using something similar. My problem isn't the drop down menu. I have 2 menus, the top tabs that are a links, which dynamically open a submenu with text and drop down menu children, etc etc. My theor

[jQuery] Re: Problem with binding mouseout to only parent div

2007-10-03 Thread Brandon
Thanks, but the drop down menu isn't the problem... I'm already using a type of drop down menu similar to suckerfish. The problem is I have two menus, a top tab menu calling a bottom menu that does the drop downs... when the page is loaded it highlights the proper top tab for the page you're on (a

[jQuery] Re: Problem with binding mouseout to only parent div

2007-10-03 Thread motob
I would suggest using one of jQuery's menu plugins. There is a standard practice for marking up menus and sub menus using lists (). Look at this tutorial for suckerfish drop down menu (http:// www.alistapart.com/articles/dropdowns/). Once you have your menu properly marked up take a look at the su