// 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); } }); }); } }
Russia's President Vladimir Putin delivers a speech during the Valdai Discussion Club annual international conference in Sochi, Russia, October 2, 2025. / Sputnik/Mikhail Metzel/Pool via REUTERS
Russian President Vladimir Putin on Oct. 2 criticized U.S. efforts to pressure India and China into cutting energy ties with Moscow, warning that such moves could backfire economically.
Putin said that if higher tariffs are imposed on Russia's trade partners, it would drive up global prices and force the U.S. Federal Reserve to keep interest rates high.
That, in turn, would slow down the U.S. economy, Putin told a forum of Russian experts.
ADVERTISEMENT
ADVERTISEMENT
Comments
Start the conversation
Become a member of New India Abroad to start commenting.
Sign Up Now
Already have an account? Login