diff --git a/select2.js b/select2.js index ceb09281..c9c97526 100644 --- a/select2.js +++ b/select2.js @@ -1543,10 +1543,11 @@ return; } - if (e.which == KEY.DELETE) { + if (e.which == KEY.DELETE || e.which == KEY.BACKSPACE) { if (this.opts.allowClear) { this.clear(); } + killEvent(e); return; }