CSS de .active et .inactive toggle ()

$('p').on('click', function() {
      $(this).toggleClass('special');
    });
Nutty Nightingale