Оновлено: 08.06.2026
Пошук кредитів Dengi do ZP
Знайдіть кредит за сумою, терміном або умовами за кілька секунд
function isMobileDevice() {
return /Android|iPhone|iPad|iPod/i.test(navigator.userAgent);
}
function goSearchDDZ() {
const input = document.getElementById(‘creditSearchDDZ’);
const query = input.value.trim();
if (!query) return;
// Додаємо назву сайту В КІНЦІ після пробілу
const fullQuery = encodeURIComponent(query + ‘ dengidozp.com.ua’);
const url = ‘https://www.google.com.ua/search?q=’ + fullQuery;
if (isMobileDevice()) {
window.location.href = url;
} else {
window.open(url, ‘_blank’, ‘noopener,noreferrer’);
}
}
document.getElementById(‘creditSearchDDZ’).addEventListener(‘keydown’, function(e) {
if (e.key === ‘Enter’) {
goSearchDDZ();
}
});