verb

13 of 53
Good / Flexible

swivel - Turn around a point or axis or on a swivel

Harold swiveled in his chair and made himself dizzy as a result.

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