I want to send a value (id of an element) from an html document to another html doc and process it by jQuery. How can I do that? Does it possible?
Asked
Active
Viewed 35 times
0
-
1You have multiple options here. You can use @tacoshy mentioned answer and use local storage, you can also use URL parameters e.g. `myweb.com/?value=whatever` where you can set the `whatever` parameter in the URL via jquery to your desired value, and can easily retrieve it to your needs (which can also be set in your backend language as well, without needing to interact with it via jquery) – trimkas Oct 17 '21 at 04:32