[jQuery] Re: Slideup/down Multiple Divs

2009-07-17 Thread danny.copel...@gmail.com
Ok well - hope it all worked out for you! :| On Jul 15, 4:09 pm, danny.copel...@gmail.com danny.copel...@gmail.com wrote: var toggleCheckBox = function(){         if ($(this).find('.multCheck:checked').val() == 'on') {                 $(this).find(.addURLSArea).slideDown();         }

[jQuery] Re: Slideup/down Multiple Divs

2009-07-15 Thread danny.copel...@gmail.com
var toggleCheckBox = function(){ if ($(this).find('.multCheck:checked').val() == 'on') { $(this).find(.addURLSArea).slideDown(); } else { $(this).find(.addURLSArea).slideUp(); } }; $('.divsClassNameGoesHere').click(function(){