Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

221
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda