Compatibility issue with jquery ui.autocomplete -
i using jquery ui.autocomplete . working fine in ie 11. however, having compatibility issues when run project in mozilla(latest) or chrome(latest). have 2 problems this. how resolve compatibility issue and what best way handle these compatibility issues? different browsers have different compatibility issues , if make project compatible particular browser, still non-compatible in another. is not there way make project compatible in browser? now, code used try , achieve auto-complete feature provided below: $(function () { $.extend($.ui.autocomplete.prototype, { _rendermenu: function (ul, items) { $(ul).unbind("scroll"); var self = this; self._scrollmenu(ul, items); }, _scrollmenu: function (ul, items) { var self = this; var maxshow = 10; var results = []; var pages = math.ceil(items.length / maxshow); results = items.slice(0, maxshow); if (pages > 1) { $(ul).scro...