if ($(this).hasClass('on')) { // удаление $(this).removeClass('on'); } else { // добавление $(this).addClass('on'); };
$(this).toggleClass("on") ;