navigate.html (254B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <script> 4 // Navigates the window to a location specified via URL query param. 5 const params = new URLSearchParams(window.location.search); 6 const loc = params.get('location'); 7 window.location = loc; 8 </script>