rpheath / searchbox

A live search plugin for jQuery.
97 stars 51 forks source link

Multiple searchboxes causing issues #1

Open biodesign opened 13 years ago

biodesign commented 13 years ago

I have been able to get an individual search box to work without failm but when I add more than one, Example: $('input.searchcontacts').searchbox({ url: '/contacts/load_contacts/', param: 'searchcontacts', dom_id: '#contactresults', delay: 250 }); $('input.searchattendees').searchbox({ url: '/events/load_attendees/', param: 'searchattendees', dom_id: '#attendeeresults', delay: 250 }); $('input.searchrecipients').searchbox({ url: '/mailers/load_recipients/', param: 'searchrecipients', dom_id: '#recipientresults', delay: 250 });

Then it appears it reads the last parameters every time searchbox is called. Am I missing something?

Thanks, Gregg

ghost commented 13 years ago

I have the same problem, is it solved or not?