[jQuery] Re: performing actions on single elements with widely used classes

2008-11-06 Thread evo
C'mon guys, I posted this on monday and no one has any ideas/ knows hows to help? On Nov 4, 8:44 am, evo [EMAIL PROTECTED] wrote: anyone? On Nov 3, 5:28 pm, Liam Potter [EMAIL PROTECTED] wrote: Hi, I'm having trouble figuring out how I can perform say, a hide animation on adiv, by

[jQuery] Re: performing actions on single elements with widely used classes

2008-11-06 Thread Rik Lomas
Try this: $('a.delete').click(function () { $(this).parent().hide('slow'); }); 2008/11/6 evo [EMAIL PROTECTED]: C'mon guys, I posted this on monday and no one has any ideas/ knows hows to help? On Nov 4, 8:44 am, evo [EMAIL PROTECTED] wrote: anyone? On Nov 3, 5:28 pm, Liam Potter

[jQuery] Re: performing actions on single elements with widely used classes

2008-11-06 Thread Liam Potter
this has helped, now just to modify it for the actual script. Thanks Rik Rik Lomas wrote: Try this: $('a.delete').click(function () { $(this).parent().hide('slow'); }); 2008/11/6 evo [EMAIL PROTECTED]: C'mon guys, I posted this on monday and no one has any ideas/ knows hows to help?

[jQuery] Re: performing actions on single elements with widely used classes

2008-11-04 Thread evo
anyone? On Nov 3, 5:28 pm, Liam Potter [EMAIL PROTECTED] wrote: Hi, I'm having trouble figuring out how I can perform say, a hide animation on a div, by clicking a button on one div, which uses a class used by other divs. *Lets say I have this:* div class=message a href=#