Is it possible to apply a jQUery method such as .hide() to many divs with different id parameters in one go.
The example for a single div is:
$("#action-div").click( function() { $("#some-div-to-hide").hide("fast"); } );
Can this be done for many divs with different ids, without having to handle the .click event many times.