[jQuery] Re: Need help with jQuery array

2008-09-24 Thread Rene Veerman
Give your UL tag an id 'menu', and replace your document.ready code with this: $(document).ready(function() { $('ul#menu li a').each (function () { $(this).append ('span class=hover/span'); var $span = $(' span.hover', this).css('opacity', 0); $(this).hover

[jQuery] Re: Need help with jQuery array

2008-09-24 Thread Jim Davis
Rene, Thanks for your help. Your solution works great. Jim On Wed, Sep 24, 2008 at 6:54 AM, Rene Veerman [EMAIL PROTECTED] wrote: Give your UL tag an id 'menu', and replace your document.ready code with this: $(document).ready(function() { $('ul#menu li a').each (function () {