Skip to content

Instantly share code, notes, and snippets.

@aatronco
Last active September 24, 2019 15:28
Show Gist options
  • Select an option

  • Save aatronco/541f9ef036fe17e8e8e851e77736473c to your computer and use it in GitHub Desktop.

Select an option

Save aatronco/541f9ef036fe17e8e8e851e77736473c to your computer and use it in GitHub Desktop.
function autocomplete(value,input){
var interval = setInterval(function(){
console.log("#"+input)
if($("#"+input).text()){
$("#"+input).val(value);
clearInterval(interval);
}
}, 500)
}
$(document).ready(autocomplete(14,"order_shipping_address_region"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment