cheatsheets/_js/behaviors/search-form.js

18 lines
365 B
JavaScript

import onmount from 'onmount'
import on from 'dom101/on'
/**
* Submitting the search form
*/
onmount('[data-js-search-form]', function () {
on(this, 'submit', e => {
e.preventDefault()
const link = document.querySelector('a[data-search-index]:visible')
const href = link && link.getAttribute('href')
if (href) window.location = href
})
})