Skip to content

Instantly share code, notes, and snippets.

@HenkPoley
Created August 16, 2026 14:29
Show Gist options
  • Select an option

  • Save HenkPoley/3d1f89afcabdbf502428371af1b76487 to your computer and use it in GitHub Desktop.

Select an option

Save HenkPoley/3d1f89afcabdbf502428371af1b76487 to your computer and use it in GitHub Desktop.
Open https://www.nvidia.com/Download/Find.aspx/ - Right-click > inspect element, past this into the JavaScript 'console' tab command line.
console.clear();
$.ajaxPrefilter(options => {
const u = new URL(options.url, location.href);
u.pathname = u.pathname.replace(
/^\/Download\/Find\.aspx\//,
"/Download/"
);
console.log("AJAX request:", u.href);
options.url = u.href;
});
document
.getElementById("selProductSeriesType")
.dispatchEvent(new Event("change", { bubbles: true }));
@HenkPoley

Copy link
Copy Markdown
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment