Skip to content

Instantly share code, notes, and snippets.

View Dollique's full-sized avatar
💭
Looking for a Job 😸

Tobias Marty Dollique

💭
Looking for a Job 😸
View GitHub Profile
$(document).ready(function() {
$('#navtoggle').on('click', function(e){
e.preventDefault();
e.stopPropagation();
$('#subnav').slideToggle(500, function() {
if ($('#subnav').is(':visible'))
$('#subnav').css('display','block'); /* This is needed, so it does not get confused with display: table-cell */
});
});