In bootstrap.js version 2.2.2 I found the same a error at older versions line 1831
Created by: itcompany
In line 1831 bootstrap.js
, matcher: function (item) { return ~item.toLowerCase().indexOf(this.query.toLowerCase()) }
before it causes an error when I receive null data from mysql select statement.
TypeError: item is null return ~item.toLowerCase().indexOf(this.query.toLowerCase())
google........
, matcher: function (item) { + if (item == null) + return false; return ~item.toLowerCase().indexOf(this.query.toLowerCase()) }
Without '+' ;) All fine, please update the code.
Thanks and Regards