Files

14 lines
399 B
JavaScript
Raw Permalink Normal View History

2025-05-20 12:36:47 +02:00
function searchInputFocus() {
document.getElementById("sinp").focus();
document.getElementById("sinp").focus();
document.getElementById("sinp").select();
document.getElementById("sinp").select();
}
function searchFocus() {
document.getElementById("stxt").classList.add("floataway");
}
function searchBlur() {
document.getElementById("stxt").classList.remove("floataway");
}