mirror of https://github.com/kurisufriend/frontend
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
678 B
22 lines
678 B
// -------------------------------------------------------------
|
|
// Search bar function
|
|
// -------------------------------------------------------------
|
|
|
|
function search_bar() {
|
|
var query = document.querySelector("#header #search_bar").value;
|
|
if(query != ""){
|
|
query = query.toLowerCase().replaceAll(" ", "+");
|
|
var url = "https://amangathing.ddns.net/search.html?title=" + query;
|
|
console.log(query);
|
|
window.location.href = url;
|
|
}
|
|
}
|
|
|
|
document.querySelector("#header #search_bar").addEventListener("keydown", function (e) {
|
|
e = e || window.event;
|
|
if(e.keyCode == 13){
|
|
search_bar();
|
|
e.preventDefault();
|
|
}
|
|
});
|
|
|
|
|