Yes, we are having the same issue.
Firefox JS Console Error: “TypeError: target is undefined”
Chrome Console Error: “Uncaught TypeError: Cannot read property ‘parentElement’ of undefined”
On Line 7 of es-widget-page.js
Thread Starter
Pel
(@pelstudio)
Note for anyone else following along in case this may be of help. We added the following code to prevent the Return key from submitting the form in Chrome.
jQuery('form').bind("keypress", function (e) {
if (e.keyCode == 13) return false;
});