Skip to content

Instantly share code, notes, and snippets.

View mattdeco's full-sized avatar

Matt Rosenzweig mattdeco

View GitHub Profile
jQuery(document).ready(function($) {
$("#nav > li > a").attr("href", "#");
$('#nav > li').click(function(e){
$('#nav > li > ul').hide(500);
$(this).children('ul').slideToggle();
e.stopPropagation();
});});