verb

265 of 903
Good / Smart

unravel - To undo twisted, knitted, or woven threads.

When the earphone wires gets twisted, you have to slowly and calmly unravel them.

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