[jQuery] Need help building a jQuery dropdown menu

2009-09-21 Thread sammahoney
Hi folks I'm just starting out with jQuery. I want to make a simple 'ul' dropdown menu to improve my understanding. The basic flow is this: 'ul.menu li ul' has display:none on hover of li, get store height of 'this' hidden ul set height of 'this' ul to 0 set display to block animate height

[jQuery] Re: Need E-Book

2009-08-12 Thread sammahoney
These tutorials are a great way to get started: http://www.youtube.com/watch?v=Hk5oXFtYLwEfeature=related http://www.youtube.com/watch?v=J64Pmi_jEiQfeature=related On Aug 12, 1:50 pm, naresh karankal nkaran...@gmail.com wrote: Sir, I beginner of J query, so I need complete e_book of j query.

[jQuery] Change bg image on hover

2009-08-11 Thread sammahoney
Hi guys I have a dropdown menu. When the dropdown is hovered, I need a bg image to show, then slowly fade out when the mouse leaves. I wrote this little script for it: var $j = jQuery.noConflict(); $j(function(){    $j(#dropdown-nav li ul li).mouseover(function(){                

[jQuery] Re: Change bg image on hover

2009-08-11 Thread sammahoney
I should add that if I use mouseenter, it fixes the problem, but then for some reason my dropdowns parent won't stay active, whereas it will on mouseover. On Aug 11, 10:08 pm, sammahoney samom...@gmail.com wrote: Hi guys I have a dropdown menu. When the dropdown is hovered, I need a bg image

[jQuery] Re: Need a jQuery 'equal height columns' script

2009-04-03 Thread sammahoney
the eventual lowest baseline. It should then loop through each of the elements and set their heights to be the baseline (i.e. the lowest point) minus their top position, using a simultaneous equation: bottom = height + top, therefore height = bottom - top. On Apr 2, 10:15 pm, sammahoney samom

[jQuery] Equalize baseline script needs converting to jQuery

2009-04-03 Thread sammahoney
Hi All Posted this under a different title but I think 'equalizing baseline' is a better description than 'equalizing columns'. Basically, I need this script converted to jQuery - http://v3.thewatchmakerproject.com/journal/354/equalising-box-baselines-with-javascript I'm more than happy to pay

[jQuery] Need a jQuery 'equal height columns' script

2009-04-02 Thread sammahoney
Hi All I have an old script for equalizing columns. Can't remember where I got it, but I need something similar in jQuery - I've found a few so far, but they all equalize columns that start on the same row on a page - I need something that can equalize columns that start at different heights...

[jQuery] Re: Need a jQuery 'equal height columns' script

2009-04-02 Thread sammahoney
of the scripts you listed! On Apr 2, 6:00 pm, Jack Killpatrick j...@ihwy.com wrote: http://www.cssnewbie.com/equalheights-jquery-plugin/ http://www.tomdeater.com/jquery/equalize_columns/ - Jack sammahoney wrote: Hi All I have an old script for equalizing columns. Can't remember where I got

[jQuery] Re: Need a jQuery 'equal height columns' script

2009-04-02 Thread sammahoney
Here's how my example looks without any script, just so you can see. I need to go from this - http://jsbin.com/eguze - to this - http://jsbin.com/ofehi On Apr 2, 7:11 pm, sammahoney samom...@gmail.com wrote: Thanks for the reply, but unfortunately neither of them are what I need - I've already

[jQuery] Re: Need a jQuery 'equal height columns' script

2009-04-02 Thread sammahoney
Well, I found the original, so here it is - http://v3.thewatchmakerproject.com/journal/354/equalising-box-baselines-with-javascript Anyone know of anything similar for jQuery?