Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- document.addEventListener('DOMContentLoaded', function() {
- var dropdownButtons = document.querySelectorAll('.jnews-lang-custom-dropdown-btn');
- dropdownButtons.forEach(function(button) {
- var dropdownContent = button.nextElementSibling;
- button.addEventListener('click', function() {
- dropdownContent.classList.toggle('show');
- });
- });
- window.addEventListener('click', function(event) {
- dropdownButtons.forEach(function(button) {
- var dropdownContent = button.nextElementSibling;
- if (!button.contains(event.target) && !dropdownContent.contains(event.target)) {
- dropdownContent.classList.remove('show');
- }
- });
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement