Hello, i'm using this control http://devthought.com/projects/mootools/textboxlist/
It's using JQuery
Code:
bit.toElement().keydown(navigate);
var navigate = function (ev) {
var evStop = function () {
ev.stopPropagation();
ev.preventDefault();
};
switch (ev.which) {
case 13:
evStop();
...work...
}
};
This code work fine in FF and IE, on pushing Enter it's stop form submit.
Q: But in Opera, page reload, how to fix that?
Solution: bit.toElement().keypress(navigate);