A great starting point, but to date Myles has not added beyond the first level. He does present some excellent work, though, yes?
FWIW , the menu items on TJ's example are cut off on Firefox as well. I was playing around with this style of menu system this week as well, using Myles's and a couple others for baseline code (search back through the mailing list entries reveals several approaches). Here's what I have thus far: http://beta.ksscholl.com/jquery/suckerfish.html Kevin Glen Lipka wrote: > have you seen this one? > http://be.twixt.us/jquery/suckerFish.php > In IE7, the menu items are cut off on yours. > > Glen > > > On 10/7/06, *TJ* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: > > > Hi, I am trying to make a drop down menu. I have half of it but I > need a sub menu off to the left. I am using this jquery code. > > $(document).ready(function(){ > $("#nav-one li").hover( > function(){ $("ul", > this).fadeIn("slow"); }, > function() { } > ); > if (document.all) { > $("#nav-one li").hoverClass ("sfHover"); > } > > $("#subnav li").hover( > function(){ $("ul", > this).fadeIn("slow"); }, > function() { } > ); > if (document.all) { > $("#subnav li").hoverClass ("sfHover"); > } > }); > > $.fn.hoverClass = function(c) { > return this.each(function(){ > $(this).hover( > function() { > $(this).addClass(c); }, > function() { > $(this).removeClass(c); } > ); > }); > }; > > Here is the page it is one. > http://www.tjshafer.com/cortek/ > > Any ideas? > Thanks, TJ > > > > http://www.tjshafer.com/cortek/ > > > _______________________________________________ > jQuery mailing list > [email protected] <mailto:[email protected]> > http://jquery.com/discuss/ > > > > ------------------------------------------------------------------------ > > _______________________________________________ > jQuery mailing list > [email protected] > http://jquery.com/discuss/ _______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
