Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
397 views
in Q2A Core by
I disabled the Enter key on the Tags field, as users tend to click enter when the autosuggestion shows only one word.

However, enter sends the question form to the server :)

For others, who have the same problem or users, use javascript / jquery:

    $("#tags").keypress(function(e) {
        if (e.which == 13) { return false; }
    });
by
Good idea. Actually it would be nice if there was a dropdown where you could select the tags from. Like the way Stack Overflow /used/ to do it. (They changed it now to be a grid which IMO isn't as easy to use.)

Please log in or register to answer this question.

...