$(this).parent().next('img').click(); then you can insert a function.... hope that helps... jereyBass
On Sep 5, 9:06 am, jerpod <[EMAIL PROTECTED]> wrote: > I've got some html that looks like this: > > <div class="awardheading"> > <img class="plusminus" src="/images/plus.gif"> Some text here. <a > class="nominatelink" href="#">Make your nomination.</a></div> > > <div class="awardnomination"> > This is award info > </div> > > A click on the plusminus image shows/hides the awardnomination div. > That's working. I also want a click on the nominatelink to trigger a > click on the image...since I've already got that working. > > I thought something like: > > $(this).parent().next('img').trigger('click') > > would work but I get nothing when clicking the link. Thanks in > advance! > > jp