$(function() { $('div').click(function(){ if ($(this).hasClass('s1')) { alert('изменить класс'); $(this).removeClass('s1').addClass('s2'); } }); });