- Choosing a selection results in a full page refresh.
- Opens in a new window.
document.querySelectorAll("summary").forEach(item => {
item.addEventListener("click", e => {
if (item.querySelector("a")) {
// Prevent default dropdown toggle
e.preventDefault();
// Go to the link
window.location = item.querySelector("a").href;
}
});
});