// 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); } }); }); } }
(From left to right) Beerud Sheth, Chet Kapoor, Jay Vijayan and Anita Manwani / New India Abroad
At TiEcon 2025, three of Silicon Valley’s most influential unicorn founders came together for a high-powered keynote panel to discuss the defining moments, mindset shifts, and emerging technologies that have shaped billion-dollar enterprises.
The panel, titled “From Grit to Greatness: Inside the Journey to Unicorn Status,” featured Chet Kapoor, Chairman and CEO of DataStax; Beerud Sheth, Co-founder and CEO of Gupshup; and Jay Vijayan, CEO of Tekion Corp. It was moderated by TiE Silicon Valley president Anita Manwani.
Also Read: Microsoft CEO Satya Nadella receives TiE Lifetime Achievement award
ADVERTISEMENT
ADVERTISEMENT
Comments
Start the conversation
Become a member of New India Abroad to start commenting.
Sign Up Now
Already have an account? Login