You can use Enter on the Text Area
-
When you add text area to your form, you can write something to it. But you cannot use “enter” button. I mean when you press the “enter”, it doesn’t do head line. I found a solution;
Open /wp-content/plugins/nex-forms-express-wp-form-builder/js/nexf-onload-ui.js file and go to line 4413. You will see following codes;
jQuery(document).on('keyup keypress', '#nex-forms form input[type="text"], #nex-forms form textarea', function(e) { if(e.which == 13) { e.preventDefault(); return false; } });
Change it like following;
jQuery(document).on('keyup keypress', '#nex-forms form input[type="text"], #nex-forms form textarea', function(e) { if(e.which == 13) { return true; } });
and save it. After that you can use the enter in the textarea ??
https://www.ads-software.com/plugins/nex-forms-express-wp-form-builder/
- The topic ‘You can use Enter on the Text Area’ is closed to new replies.