Map enter key to tab key
i want to focus on next html element on enter key same as that of tab.
i tried following code but its not working.
i don't want to write any code i just want to map enter key to tab.
dockeyUp(e) {
if (e.keyCode == 13) {
e.keyCode = 9;
e.preventDefault();
}
}
componentWillMount() {
document.addEventListener("keyup", this.doc_keyUp, false);
}
on above code i get error that keycode is readonly property