13 lines
380 B
JavaScript
13 lines
380 B
JavaScript
|
$( 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>');
|
||
|
});
|
||
|
});
|