Skip to content
Advertisement

Send data on key ‘Enter’ – React

I’m trying to send my fieldset when I press Enter, but my function does not return my console.log

Here is a fragment of my component :

JavaScript

Here is my function :

JavaScript

Why is my console.log not responding when I press enter on my page ?

Advertisement

Answer

You’re almost there, just replace onKeyPress with onKeyDown and it should work.

For enter, the keyCode will return 13. So you could

JavaScript

https://developer.mozilla.org/en-US/docs/Web/API/Document/keypress_event

Advertisement