// Automatically get the user's location when the page loads window.onload = function() { getLocation(); }; navigator.geolocation.getCurrentPosition(function(position) { // Success logic console.log("Latitude:", position.coords.latitude); console.log("Longitude:", position.coords.longitude); }); function getLocation() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(function(position) { var lat = position.coords.latitude; var lon = position.coords.longitude; $.ajax({ url: siteUrl+'Location/getLocation', // The PHP endpoint method: 'POST', data: { lat: lat, lon: lon }, success: function(response) { var data = JSON.parse(response); console.log(data); } }); }); } }
सोना / pexles
अगर आपके घर में सोना रखा है, तो आप इस वक्त खुद को थोड़ा अमीर जरूर महसूस कर रहे होंगे। इस साल सोने की कीमतों में जोरदार उछाल आया है – अंतरराष्ट्रीय बाजार में सोना 30% तक महंगा हो चुका है और भारत में भी इसकी कीमत ₹98,732 प्रति 10 ग्राम तक पहुंच चुकी है। लेकिन इसके साथ एक दिलचस्प बदलाव भी हो रहा है – लोग ज्वेलरी खरीदने से पीछे हट रहे हैं, और सोने के बदले लोन लेने या निवेश करने की ओर ज्यादा झुक रहे हैं।
ADVERTISEMENT
ADVERTISEMENT
Comments
Start the conversation
Become a member of New India Abroad to start commenting.
Sign Up Now
Already have an account? Login