[jQuery] Re: array problem

2008-05-27 Thread Ariel Flesler
Yes, sorry. Glad it helped. -- Ariel Flesler http://flesler.blogspot.com On 27 mayo, 20:42, Vallard <[EMAIL PROTECTED]> wrote: > Excellent Ariel!  Thank you.  Just one issue I think you had one > extra } in there, but this worked perfect for me!  Thank you very > much! > Vallard > > On May 27,

[jQuery] Re: array problem

2008-05-27 Thread Vallard
Excellent Ariel! Thank you. Just one issue I think you had one extra } in there, but this worked perfect for me! Thank you very much! Vallard On May 27, 12:23 pm, Ariel Flesler <[EMAIL PROTECTED]> wrote: > $(document).ready(function(){ >$('#home, #contact, #gallery, #about').hover( >

[jQuery] Re: array problem

2008-05-27 Thread Ariel Flesler
$(document).ready(function(){ $('#home, #contact, #gallery, #about').hover( function(){ $(this).stop().animate({marginTop: "-5px"}); }, function(){ $(this).stop().animate({marginTop: "0px"}); } }); }); You can use a class selector ins