Feel free to use any code you want from mine, too. 

I haven't completely polished it up yet, but I'll be writing up something about it within the next couple weeks on learningjquery.com, so I'll be making it look a little prettier in the meantime.


Cheers,
Karl
_______________________
Karl Swedberg
www.englishrules.com
www.learningjquery.com

On Oct 7, 2006, at 9:42 PM, Glen Lipka wrote:

have you seen this one? 
In IE7, the menu items are cut off on yours.
 
Glen

 
On 10/7/06, TJ <[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]
http://jquery.com/discuss/

_______________________________________________
jQuery mailing list

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to