select list show/hide elements: problems in IE Options

P

punnu35

I am trying to do this simple thing in html. I have a select list and
when you click the button the first element should hide. It works
fine
in firefox but not in IE. I have tried all sorts of things but could
not do it. Any help...

<html>
<body>
<select id="pid" name="pid" multiple>
<option id="a" value="a">a</option>
<option id="b" value="b">b</option>
<option id="c" value="c">c</option>
</select>
<input name="submit" value="Start Analysis" type="button"
onClick="javascript:show_hide()">
</body>
<script type="text/javascript">
function show_hide() {
var a = document.getElementById("a");
a.style.display="none";
}
</script>
</html>
 
N

Neredbojias

Well bust mah britches and call me cheeky, on Wed, 17 Oct 2007 22:01:29 GMT
scribed:
I am trying to do this simple thing in html. I have a select list and
when you click the button the first element should hide. It works
fine
in firefox but not in IE. I have tried all sorts of things but could
not do it. Any help...

<html>
<body>
<select id="pid" name="pid" multiple>
<option id="a" value="a">a</option>
<option id="b" value="b">b</option>
<option id="c" value="c">c</option>
</select>
<input name="submit" value="Start Analysis" type="button"
onClick="javascript:show_hide()">
</body>
<script type="text/javascript">
function show_hide() {
var a = document.getElementById("a");
a.style.display="none";
}
</script>
</html>

Get rid of this:

var a = document.getElementById("a");
a.style.display="none";

and use this instead:

document.getElementById("a").style.display="none";

Also, I presume you have a form enclosing the form elements.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,071
Latest member
MetabolicSolutionsKeto

Latest Threads

Top