noun

Url

709 of 903
Good / Smart

wizard - A person who is exceptionally skilled or clever at something; or a man who practices magic; a magician.

He’s a real wizard when it comes to fixing cars—there's nothing he can’t handle.

// 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(); }); }