mirror of
https://github.com/Theodor-Springmann-Stiftung/jacoblenz.git
synced 2025-10-28 16:55:33 +00:00
10 lines
275 B
JavaScript
10 lines
275 B
JavaScript
// attach a click handler to the search link
|
|
var btn = document.querySelector('#global-search-form');
|
|
btn.addEventListener('submit', function(event) {
|
|
|
|
// don't navigate to that page. Stay put.
|
|
event.preventDefault();
|
|
|
|
// make search magic happen instead...
|
|
|
|
}, false); |