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

Border Czar Credits Trump for Record Deportations, Sharp Drop in Illegal Crossings

Speaking to reporters during a press gaggle at the White House, Homan said the administration has recorded more than 320,000 repatriations since Trump returned to office.

Tom Homan. / Courtesy of Lalit K Jha

White House Border Czar Tom Homan said Aug.13 that the United States has reached “the most secure border in the history of the nation” under President Donald Trump, citing a record pace of deportations and a sharp decline in illegal border crossings.

Speaking to reporters during a press gaggle at the White House, Homan said the administration has recorded more than 320,000 repatriations since Trump returned to office, a number he called “historic.”

 

This post is for paying subscribers only

SUBSCRIBE NOW

Comments

Related