anyway to hide Telnet window in HTML? (General questions)

by eagle @, (6076 days ago)

Is there a way to hide the telnet windowin HTML.
Seems like it should be a property in TelnetDLX but I dont see it.

locked

Re: anyway to hide Telnet window in HTML?

by wodDamir @, (6076 days ago) @ eagle

Hi,

I believe I already responded to you on our ticketing system. Anyway, here's a copy of my response:

This can't be done directly by wodTelnetDLX, but has to be done from your code. However, you san use JavaScript for this. You can simply implement something like this:

When implementing body tags do this:
-------------------------------------------------------------
<body onLoad= Page_Load() >
-------------------------------------------------------------

and implement Page_Load function in JavaScript:

-------------------------------------------------------------
<script>
function Page_Load()
{
var control = document.getElementById( telnetdlx );
control.style.visibility = hidden ;
}
</script>
-------------------------------------------------------------

Regards,
Damba

locked