(function ($) { $(document).ready(function () { $.each($('.js-language-switch .dropdown-menu a'), function () { if (!$(this).hasClass('is-active')) { var lang = this; $("#language-switch").removeAttr('data-toggle'); $("#language-switch").attr('href', $(lang).attr('href')); $("#language-switch span.current-language").html($(lang).html()); $("#language-switch .caret").remove(); } }); }); }(jQuery));