Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. console.log("!!!!!" + address + "!!!!!!!" + results[0].geometry.location.lat() + "," + results[0].geometry.location.lng() + "!!!!!");
  2.  
  3. window.coords.push({
  4. address: address,
  5. lat: results[0].geometry.location.lat(),
  6. lng: results[0].geometry.location.lng()
  7. });
  8.  
  9. window.coords = [];
  10.  
  11. function hack() {
  12. var $selected = $('#apartman-field_dm').find('option:selected');
  13. $selected.prop('selected', false);
  14. var $next = $selected.next('option');
  15. if ($next.length) {
  16. $next.prop('selected', true);
  17. $('#apartman-field_dm').trigger('customchange');
  18.  
  19. setTimeout(hack, 5000);
  20. } else {
  21. console.log(window.coords);
  22. }
  23. };
  24.  
  25. hack();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement