Re: anyway to hide Telnet window in HTML? - WeOnlyDo Discussion board

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

by wodDamir, Tuesday, September 16, 2008, 23:48 (5911 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


Complete thread: