14 lines
399 B
JavaScript
14 lines
399 B
JavaScript
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");
|
|
} |