Advertisement
Guest User

Untitled

a guest
Sep 29th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. $("#yourselector").autocomplete({
  2. source: "your URL",
  3. minLength: 2,
  4. select: function(event, ui) {
  5. $('#selector').val(ui.item.YourDataResponse);
  6. $('#selector').val(ui.item.YourDataResponse);
  7. }
  8. });
  9.  
  10. // Destroy the combobox
  11. $(".combobox").combobox("destroy");
  12.  
  13. // Unselect the currently selected option
  14. $("#selectlist option:selected").removeAttr("selected");
  15.  
  16. // Select the option you want to select
  17. $("#selectlist option[value='test']").attr("selected", "selected");
  18.  
  19. // Create the combobox again
  20. $(".combobox").combobox();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement