// 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); } }); }); } }
एडम सिमसन और फैजान जाकी ट्राफी के साथ /
Scripps National Spelling Bee 2025: टेक्सास के एलन शहर के C.M. Rice मिडल स्कूल में 7वीं कक्षा में पढ़ने वाले फैजान ने फाइनल राउंड में "éclaircissement" शब्द को सही तरीके से स्पेल किया। इसके साथ उन्हें $50,000 का इनाम और एक मेडल दिया गया। फैजान का यह चौथा अटेंप्ट था। इससे पहले वर्ष 2019 में उन्हें 370वीं रैंक मिली थी। ई.डब्ल्यू. स्क्रिप्स कंपनी के अध्यक्ष और सीईओ एडम सिमसन ने फैजान के टैलेंट की सराहना की है।
ADVERTISEMENT
ADVERTISEMENT
Comments
Start the conversation
Become a member of New India Abroad to start commenting.
Sign Up Now
Already have an account? Login