mangadex/scripts/js2/manga-list.js

8 lines
257 B
JavaScript
Raw Normal View History

2021-03-14 17:31:55 -04:00
for (let select of document.querySelectorAll('.manga-sort-select')) {
select.addEventListener('change', function(evt) {
const url = new URL(window.location.href)
url.searchParams.set('s', this.value)
url.hash = 'listing'
window.location = url
})
}