10 lines
280 B
JavaScript
10 lines
280 B
JavaScript
function duckduckgo() {
|
|
const form = document.getElementById("ddg-site-search");
|
|
const input = document.getElementById("ddg-query");
|
|
|
|
form.addEventListener("submit", function () {
|
|
const domain = window.location.hostname;
|
|
input.value = "site:" + domain + " " + input.value;
|
|
});
|
|
};
|