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

भारत का DNA बताता है 50,000 साल पुरानी कहानी: वैज्ञानिक

वैज्ञानिकों ने पाया कि भारत का डीएनए 50,000 साल पुरानी कहानी कहता है। आइए जानते हैं इस बारे में।

कैलिफोर्निया विश्वविद्यालय, बर्कले के नेतृत्व में वैज्ञानिकों की एक टीम ने भारतीय आबादी का अब तक का सबसे व्यापक जीनोमिक विश्लेषण पूरा किया है। उनके निष्कर्षों से आनुवंशिक मिश्रण, प्रवास और जनसंख्या परिवर्तन का एक जटिल 50,000 साल का इतिहास सामने आया है जो भारतीय उपमहाद्वीप में स्वास्थ्य और रोग पैटर्न को आकार देना जारी रखता है।

This post is for paying subscribers only

SUBSCRIBE NOW

Comments

Related