Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

202
Views
How to track , on url change in React app

this is App.js - this is good

<Route path='/page1'>
     <Page1 />
 </Route>

this is "/page1"

var location = window.location.href
<Link to="/page1/2">
    <p>Click to change</p>
</Link>

if i click on that paragraf it change url into /page1/2 but var location isnt changed its still /page1 -------------------------------------------------------------------------------------------------------------------- I want when url chaged to set var location to new location (window.location.href)(/page1/2)

// or i need just show me how to "on url changed" do something what-ever maybe alert('url changed') or console.log('url changed')

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

If you are using react-router, use useLocation hook to get the path.

import React from "react";
import { useLocation } from "react-router-dom";

export const App = () => {
  let location = useLocation();
  return <div>...</div>;
}
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!