Search on Click with Jquery's Autocomplete

后端 未结 5 1906
自闭症患者
自闭症患者 2021-02-14 04:20

I am trying to simulate the Youtube Autocomplete Search experience.

I can\'t find the option when the viewer clicks on a listed item and is automatically proceeded to se

5条回答
  •  佛祖请我去吃肉
    2021-02-14 04:48

    $j("input#directorySearch").result(function(event, data, formatted) {
      $(this).closest("form").submit();
    });
    

    Official documentation: http://docs.jquery.com/Plugins/Autocomplete/result#handler

提交回复
热议问题