Jump to content

Using ENTER key to trigger a button event


phpjayx

Recommended Posts

Unless you are wanting to remove the submit button, then the two above me are correct. If you do want to remove it and still be able to submit ..

 

Something like this could work.

window.document.querySelector("#myFormId").addEventListener("keyup", function(event)
{
if (event.which == 13)
	this.submit();
}, false);

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.