- Jquery autocomplete UI - No results on multiple fields
- display:none;
- .live
- jQuery(".auto_search_complete").live("click", function() {
- var $this = $(this);
- jQuery(this).autocomplete({
- minLength: 3,
- ...
- success: function (data) {
- if (data.length == 0) {
- jQuery('span.guest_investor_email').show();
- $this.siblings('span.investor_field_delete_button').show();
- }
- ...