I'm making an application in an online system that does not require programming knowledge (just for me) and one of the options you have to create a content is a plugin called Mobile , where you can paste the address of any web page to be displayed within the application.
The following is the code generated by that Mobile plugin:
<!DOCTYPE html>
<html>
<head>
<title>BlankTemplate7771</title>
<script type="text/javascript">
window.onload = function()
{
var url, hdiv = document.getElementById("hiddendivid");
if (hdiv != null)
url = hdiv.innerText || hdiv.textContent;
if (url)
{
if (top == self)
window.location = url;
else
top.updateWindowWithContentsOfUrl(self, url);
}
}
</script>
</head>
<body>
<div id="hiddendivid" style="display:none">http://devocionmusical.com</div>
</body>
</html>
As you can see, the web address I gave him is link
What I want to know is, if I can add this " / fromMyApp = true " to the end of the route.
Maybe they suggest that I manually add that variable to the url, but the problem is that if the user goes to another section of the web devotionalmusical.com, then that variable disappears.
Is there a way to make / fromMyApp = true always be maintained even if the user goes to another section of the web?
I see that it uses JavaScript at the beginning, so my question is whether or not it can be done with that language.