I have two html pages, each with a js file.
When I click on a button on page 1, it should change a variable param to true and redirect the user to page 2.
In page 2 I have to check if param = true and then continue my script.
- page1.html
<div class="container-fluid" id="about">
<div class="row">
<div id="mainsubtitle">Page 1</div>
<button id="edit" type="button">Go to page 2</button>
</div>
</div>
- script1.js
var param = false;
edit.addEventListener("click", switchToOpenSession);
...
function switchToOpenSession() {
param = true;
...
}
- page2.html
<div class="container-fluid">
<div class="row">
<div>Page 2</div>
<button id="create" type="button">Create account</button>
</div>
</div>
- script2.js
if (param)
/* do this */
I tried export/import param but I got Unexpected token 'export' error
. I tried type="module"
but it doesn't work. The samples that I found was two js files in the same html page!
Can someone help please?