noun

13 of 60
Bad / Disorganized

gobbledygook - Language that is meaningless or is made unintelligible by excessive use of abstruse technical terms; nonsense

For tourists who don't speak the native language, it can seem like a bunch of gobbledygook.

// Auto-focus search input when modal opens var searchModal = document.getElementById('searchModal'); if (searchModal) { searchModal.addEventListener('shown.bs.modal', function () { var inp = searchModal.querySelector('input[name=search]'); if (inp) inp.focus(); }); }