verb

Url

601 of 733
Other / Shape

merge - To combine or unite into a single entity, to blend or mix smoothly — so that individual elements are no longer distinct.

The two companies decided to merge to increase their market share.

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