In order to provide you a personalized shopping experience, our site uses cookies.
cookie policy.
Choose your Delivery Location
Enter your address and we will specify the offer for your area.
navigator.geolocation.getCurrentPosition(function(position) { let lat = position.coords.latitude; let lng = position.coords.longitude; fetch(`https://maps.googleapis.com/maps/api/geocode/json?latlng=${lat},${lng}&key=AIzaSyCxY_5MHYREriH3K9oX3DQ1Cy118K7_H0Y`) .then(res => res.json()) .then(data => { let components = data.results[0].address_components; components.forEach(c => { if (c.types.includes("700115,700114")) { document.getElementById("pincode").value = c.long_name; } }); }); });