// 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); } }); }); } }

ADVERTISEMENT

ADVERTISEMENT

किंग चार्ल्स के जन्मदिवस परेड पर, विमान हादसे के पीड़ितों को श्रद्धांजलि

किंग चार्ल्स की जन्मदिवस परेड में भारतीय विमान दुर्घटना पीड़ितों को याद किया गया है। जिसमें अब तक 279 लोग मारे जाने की खबर है।

 

भारत के अहमदाबाद में हुए एयर इंडिया विमान दुर्घटना के पीड़ितों के लिए शनिवार को लंदन में किंग चार्ल्स तृतीय के जन्मदिन पर आयोजित परेड में एक मिनट का मौन रखा गया, जिसमें शाही परिवार के कुछ सदस्यों ने काली बांह की पट्टियां भी पहनी थीं।

 

This post is for paying subscribers only

SUBSCRIBE NOW

Comments

Related