.close an open row, when another row is clicked to open? It's working great to open rows when they are clicked, but now I'd like to close the open row upon opening another.
Rick $(document).ready(function() { $('div.calendar').find('div.details').hide().end().find('table.clickme').cli ck(function() { var answer = $(this).next(); if (answer.is(':visible')) { answer.slideUp(); } else { answer.slideDown(); } }); });