abaev-basex/static/abaev-global.js

13 lines
380 B
JavaScript
Raw Normal View History

2025-03-24 20:44:03 +03:00
$( document ).ready(function() {
// GLOBALS;
// Link elements that do not have href out of the box
$('.link').on("click", function () {
window.location=$(this)[0].dataset.href+window.location.search+window.location.hash;
});
$('#abv-search').on("submit", function () {
$('#abv-search-icon').replaceWith('<div class="loader"></div>');
});
});