I found this topic: https://discussions.soti.net/thread/chrome-lockdown-disable-url-bar/ and it seems to work for them.
The script perhaps needs some edit or something, or i'm doing something wrong...not sure.
Either way it did not work too well for me, then again Javascript is not a language I know too well.
I generally stick to HTML / CSS.
The way I have it right now is:
<html>
<head>
<style type="text/css">
</style>
<script>
function openUrl()
{
var options = "location=no, toolbar=no, menubar=no, scrollbars=yes, resizable=yes";
var theUrl = "<MCLink0>";
// TEST URL alert(theUrl);
window.open(theUrl, "", options);
}
</script>
</head>
<body>
<div id="Main">
<div class="row">
<ul>
<td onclick="openUrl();">
<li><A href ="<MCLink0>"><img src="<MCExeIcon0>" onerror="this.style.display='none'" /><div class="txt"><MCDISP0></div></a></li>
<li><A href ="<MCLink1>"><img src="<MCExeIcon1>" onerror="this.style.display='none'" /><div class="txt"><MCDISP1></div></a></li>
</td>
</ul>
</div>
</body>
</html>
Ofcourse I have more CSS and etc in between, but this is just the layout I have put it in.
Since the topic I mentioned is locked, does anyone else have experience with this?


