Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $( "#JQSEARCH" ).autocomplete({
  2. source: function(request, response){
  3. response(getData(request));
  4. }
  5. , minLength: 3
  6. ,select: function(event, ui) {
  7. alert(ui.item.code);
  8. alert(ui.item.name);
  9. $('#CODE').text(ui.item.code);
  10. $('#NAME').text(ui.item.name);
  11. $('#JQTYPE').text(ui.item.type);
  12. $('#JQCIRCUIT').text(ui.item.circuit);
  13. }
  14.  
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement