$(function(){ $('#dropdownUser').hover(function(){ $(this).addClass('active') }, function() { $(this).removeClass('active') }) $('#logout').click(function(event) { event.stopPropagation() event.preventDefault() location.href="login.html" }) })