Created
August 16, 2026 14:29
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 })); |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
More elaborate version: https://gist.github.com/HenkPoley/c58460dec46b0077192e6d5c75317413