This is the code of login.html:
<ul>
<li class="introduction">
<a href="introduction.html">
<span class="icon"></span>
Introduction
</a>
</li>
<li class="login active">
<a href="#">
<span class="login"></span>
Login
</a>
</li>
</ul>
An external link will first take to the current page (login) with some query parameters I want to keep. If the user clicks the first link introduction
, the introduction.html will be loaded. However, all the query parameter of the previous page (login) are lost.
Is there anyway I can do this page load while keeping the query parameters? Either using HTML or Javascript.
Many thanks.