Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

Feedback on: irt.org FAQ Knowledge Base Q1191, July 12, 2000 at 16:06:32:

You are here: irt.org | About | Feedback | 1487 [ previous next ]

Feedback on:
irt.org FAQ Knowledge Base Q1191

Sent by
Alexandra Enk on July 12, 2000 at 16:06:32:

Worth:
Not worth reading

Comments:
Hi:

This solution did not work for me with Netscape Communicator version 4.08:

function hide(object)
{ alert("0");
if (document.layers && document.layers[object])
{ alert("1");
document.layers[object].visibility = 'hidden';
}
else if (document.all)
{ alert("2");
document.all[object].style.visibility = 'hidden';
}
}

<style type="text/css"></style>


<select name=checkit ONCHANGE="hide('sh1')">
<option value=job1>Visible</option>
<option value=job2>Hidden</option>
</select>

<div id="sh1" class="myLayersClass" >

<table>...

My alerts in the hide() only got to the "0". Can you please offer suggestions on how I can make this work?

Thank you,
Alex Enk


Other feedback on 'irt.org FAQ Knowledge Base Q1191' - show all

©2018 Martin Webb