jQuery オートコンプリート機能で強化された入力フィールドがいくつかあります。選択イベントがトリガーされたときに対応する入力フィールドを取得する方法は?
<input name="1" value="">
<input name="2" value="">
<input name="3" value="">
$('input[type=text]').autocomplete({
source: 'suggestions.php',
select: function(event, ui) {
// here I need the input element that have triggered the event
}
});