// 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); } }); }); } }
Asha Jadeja Motwani / indiaspora.org
Indian American Asha Jadeja Motwani, a Silicon Valley-based venture capitalist, reflected on the shifting political landscape in the US, including the rising influence of conservative values, particularly among the youth.
In an interview with New India Abroad at one of the many presidential inaugural events held in Washington DC, Motwani shared her observations on the cultural and political transformations unfolding across the nation.
ADVERTISEMENT
ADVERTISEMENT
Comments
Start the conversation
Become a member of New India Abroad to start commenting.
Sign Up Now
Already have an account? Login