AhmadKarim
AhmadKarim

Reputation: 905

how can i load autocomplete with jquery on click event?

how can i load autocomplete with jquery on click event???

Upvotes: 0

Views: 182

Answers (1)

Daniel Moura
Daniel Moura

Reputation: 7966

$('#id').click(function() {
  // load autocomplete
});

Upvotes: 3

Related Questions