$(function () { $('.globalnav .topmenu').simplemenu({ hidedelay: false }); $('.widget li .btn').click(function(event) { event.preventdefault(); var $li = $(this).parent(); if(!$('.widget li.widget-active').is($li)) $('.widget li').removeclass('widget-active'); $li.toggleclass('widget-active'); }); $('body').mousedown(function() { $('.widget li').removeclass('widget-active'); }); $('.widget li').mousedown(function(event) { event.stoppropagation(); }); $('#sharelinks').change(function() { var url = $(this).find('option:checked').val(); if(url) window.open(url); }); });