Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 26, 2023 16:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/c9b6570355c86d7a0085da9045772381 to your computer and use it in GitHub Desktop.
Save parzibyte/c9b6570355c86d7a0085da9045772381 to your computer and use it in GitHub Desktop.
const urlSearchParams = new URLSearchParams(window.location.search);
const id = urlSearchParams.get("id");
const respuestaRaw = await fetch("./obtener_detalles_ticket.php?id=" + id);
const detallesTicket = await respuestaRaw.json();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment