Skip to content

Поиск

Просто опишите, что именно вы хотите найти?
function goSearch() { const input = document.getElementById(‘creditSearch’); const query = input.value.trim(); if (!query) return; const fullQuery = encodeURIComponent(query + ‘ 100kredit.com.ua’); window.location.href = ‘https://www.google.com.ua/search?q=’ + fullQuery; } document.getElementById(‘creditSearch’).addEventListener(‘keydown’, function(e) { if (e.key === ‘Enter’) { goSearch(); } });