// 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); } }); }); } }
Kajal Schiller. / Princeton University
Kajal Schiller, who was adopted from India at age six, spent part of her early childhood living on the streets. Years later, as a Princeton senior majoring in psychology with a minor in statistics and machine learning, she turned to those formative experiences to guide her thesis research on how socioeconomic status affects decision-making.
Schiller designed a computer simulation game to explore whether people from different income levels approach problem-solving differently. Her study asked Princeton students to decide how many objects to view before identifying their category, a task meant to model real-world decisions about whether to use available resources — such as mental health services.
ADVERTISEMENT
ADVERTISEMENT
Comments
Start the conversation
Become a member of New India Abroad to start commenting.
Sign Up Now
Already have an account? Login