betaWeb / inputTags-jQuery-plugin

http://betaweb.github.io/inputTags-jQuery-plugin/
40 stars 19 forks source link

Enter keydown send form #13

Closed hortigado closed 4 years ago

hortigado commented 4 years ago

Hi when i keydown the key 13(enter) for confirm the tag, the form is submit.

hortigado commented 4 years ago

I solution it with

        self.$input.on('keypress', function (e) {
                        var key=e.keyCode||e.which;
                        if (13===key) {
                            e.preventDefault();

                        }

                    })