article.js 231 Bytes
$(function () {
  $('body').click(function () {
    $('.mobile-left-nav').removeClass('show-nav');
  });

  $('.mobile-left-nav').click(function (event) {
    event.stopPropagation();
    $(this).toggleClass('show-nav');
  });
});