<script> $(document).ready(function() { $('.allDivs').click({prev: 0}, function(e) { if (e.data.prev) e.data.prev.removeClass('active'); e.data.prev = $(this); $(this).addClass('active'); }); }); </script>