var dropdown = document.querySelector('.dropdown');
dropdown.addEventListener('click', function(event) {
event.stopPropagation();
dropdown.classList.toggle('is-active');
});
You can insert any type of content within the dropdown menu. You simply need to use a
<div>
instead.
This is a link