I would like to detect whether the user has pressed Enter using jQuery.
How is this possible? Does it require a plugin?
EDIT: It looks like I need
$(document).keyup(function(e) { if(e.key === 'Enter') { //Do the stuff } });