I have a searchbox on my site that. Currently, users must click the submit button next to the box to search via jquery\'s post. I would like to let users also press enter
Something like this will work
$('#usersSearch').keypress(function(ev){ if (ev.which === 13) $('#searchButton').click(); });