I have a Javascript file (which will start when invoked from my application when the user selects an item in my application).
In that file I have a variable and am storing a large, dynamic string (based on the user selection) in that variable.
Now I want to open a new page from the Javascript and display the value stored in the string variable in that page.
How do I pass the variable value and display it in that page?
I can use window.open() to open a new window.