Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Multiple Jquery toggle function not working! Reply To: Multiple Jquery toggle function not working!

#168907
Niplo
Participant

Thanks for the responses, definitely got me on the right track!

I got this to work:


$(document).ready(function(){
    jQuery('.InfoDisplay').click( function() {
      $(this).next('#Info').fadeToggle();
      return false;
    });
});