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

222
Views
how to pass "id" as a path variable via url from first page to second page and assign to a variable

I need to pass the id of html card (when I click on it) to second page via URL as a path variable using JavaScript. currently, the URL is like this : www.xyz.com/page2.html?id=2

but I need to do the same function by sending the id as a path variable to second page like this

www.xyz.com/page2.html/2

and assign that id to a variable in the second page. I need to do this using JavaScript or jQuery Please someone help me to solve this issue.

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

0

You can use jQuery to redirect the user to another page.

let's say

//cardID is the class value of the HTML card or we can use some other selector
$( ".cardID" ).on( "click", function() {
    var cardID = $(this).attr('id');
    window.location.replace("www.xyz.com/page2.html/"+cardID);
});

And on another page...

var url = window.location;
var urlAux = url.split('/');
var cardID = urlAux[2]
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!