If you type in few spaces into search field it won't scale, because of this line (chosen / chosen / chosen.jquery.js:968): ``` div.text(this.search_field.val()); ``` It'll work with ``` div.html(this.search_field.val().replace(/\s/g, ' ')); ```