jQuery-Smart-Auto-Complete
jQuery-Smart-Auto-Complete copied to clipboard
IE Click item
trafficstars
In IE selecting an item by mouse clicking the item was not working. I changed this code about line 500 FROM:
$(options.resultsContainer).delegate(options.resultElement, 'click.smart_autocomplete', function () { $(options.context).trigger('itemSelect', [this]); return false });
TO $(options.resultsContainer).delegate(options.resultElement, 'mousedown.smart_autocomplete', function () { $(options.context).trigger('itemSelect', [this]); return false });
Great, thanks. laktek should pull that.