// 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

POWER 100: विश्वजीत राणा लाइफटाइम अचीवमेंट अवॉर्ड से हुए सम्मानित

विश्वजीत राणा लाइफटाइम अचीवमेंट अवॉर्ड से सम्मानित हुए हैं। बता दें, लंदन के सेवॉय होटल में आयोजित एक भव्य समारोह में यह सम्मान प्रदान किया गया।

विश्वजीत राणा /


POWER 100 और  ‘British Asians Who’s Who’  अवार्ड्स ने संयुक्त रूप से विश्वजीत राणा को लाइफटाइम अचीवमेंट अवार्ड 2025 से सम्मानित किया है। लंदन के सेवॉय होटल में आयोजित एक भव्य समारोह में यह सम्मान प्रदान किया गया।

 

This post is for paying subscribers only

SUBSCRIBE NOW

Comments

Related