I have several input fields that are enhanced with jQuery auto-complete functionality. How to get the corresponding input field when a select event is triggered?
<
Use $(this)
$(this)
select: function(event, ui) { $(this).attr('name'); }