Want to make clicking outside of that faked dropdown encourage it to go away?
$('#show-hide-profiles').on('click', function(e) {
e.stopPropagation();
});
$(document).on('click', function (e) {
$('#list-of-profiles').hide();
});
Want to make clicking outside of that faked dropdown encourage it to go away?
$('#show-hide-profiles').on('click', function(e) {
e.stopPropagation();
});
$(document).on('click', function (e) {
$('#list-of-profiles').hide();
});