views:

11

answers:

1

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

+1  A: 
$('#id').click(function() {
  // load autocomplete
});
Daniel Moura
+1 for very literal interpretation :)
Ender