noun

Url

517 of 903
Good / Smart

feedback - Information or opinions about how well someone is doing something, used for improvement.

Our website asked customers for feedback about what we can do improve to make our service better.

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