verb

Url

49 of 60
Other / Inward

twiddle - To turn or twist something with the fingers, usually in a casual or nervous way.

He twiddled the pen between his fingers while waiting for the meeting to start.

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