Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. $(function(){
  2. $('#num').autocomplete({
  3. lookup: Object.keys(localStorage),
  4. select: function(event, ui) {
  5. //Tried a number of things here, it just doesn't trigger...
  6. event.preventDefault();
  7. $(this).val("hello");
  8. }
  9. });
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement