About the Google Autocomplete, I used a WooCommerce add-on for autocomplete checkout form. but that plugin doesn’t have any function to prevent this. but the topic not about the autocomplete 🙂 I was just curious to know How to stop calling ajax while entering street address on checkout page if any hooks for that.
jQuery("#billing_address_1, #shipping_address_1").keydown(function (e) {
e.stopPropagation();
});
Yeah, Through this code it has been resolved from my end, but if it is the wrong way to solve this problem, curious to know here.
Thanks
Chandan