You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This prevents the "Open in new tab" thingy - Brings it close to become an app, rather than a website. Feel me?
Replace all the <a href="link"></a> instances with <button onclick="document.location.href='link'"></button>. Well, the button part is optional but just look at the onclick Javascript function. It is the important part.
The text was updated successfully, but these errors were encountered:
Usually, anchor tags open the links in the same page, as the default value for target attribute is target="_self". Maybe try adding this attribute explicitly in the anchor tag, if it is opening the link in new tab currently
This prevents the "Open in new tab" thingy - Brings it close to become an app, rather than a website. Feel me?
Replace all the
<a href="link"></a>
instances with<button onclick="document.location.href='link'"></button>
. Well, the button part is optional but just look at the onclick Javascript function. It is the important part.The text was updated successfully, but these errors were encountered: