Skip to content

Instantly share code, notes, and snippets.

View pgblu's full-sized avatar

Philipp Blume pgblu

  • SUONO MOBILE USA
  • Champaign, IL
View GitHub Profile
@pgblu
pgblu / mobile_menu.js
Last active August 27, 2015 18:08 — forked from AlexaWebhead/mobile_menu.js
Css RWD mobile nav, triggered by JS
//mobile nav trigger
$('#menu-trigger').click(function (e){
e.preventDefault();
$('body').toggleClass('active');
$(this).toggleClass('active');
});