Hi
i am working on drop down list boxes.
My main aim is to display a table if the option is selected in the list box
i have kept the table as invisible
please guide me towards the solution
here goes the code
[HTML]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitl ed Document</title>
<script type="text/javascript">
function change()
{
if(document.for ms[0].city.options.v alue=="vizag")
{
document.forms[0].list.style.dis play=true;
}
}
</script>
</head>
<body>
Films in City : <select name="city">
<option value="" selected>Select a city</option>
<option value="vizag" onClick="change ()">Vizag</option>
</select>
<table id="list" style="display: none; ">
<tr>
<td height="87">Par ugu</td>
<td>Jagadamba </td>
<td>Telugu</td>
</tr>
<tr>
<td height="95">Jaa ne Tu Ya Jaane Na</td>
<td>RamaDevi</td>
<td>Hindi</td>
</tr>
<tr>
<td height="163">Ha ncock</td>
<td>Sarada</td>
<td>English</td>
</tr>
</table>
</body>
</html>
[/HTML]
thanks in advance
kash
i am working on drop down list boxes.
My main aim is to display a table if the option is selected in the list box
i have kept the table as invisible
please guide me towards the solution
here goes the code
[HTML]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitl ed Document</title>
<script type="text/javascript">
function change()
{
if(document.for ms[0].city.options.v alue=="vizag")
{
document.forms[0].list.style.dis play=true;
}
}
</script>
</head>
<body>
Films in City : <select name="city">
<option value="" selected>Select a city</option>
<option value="vizag" onClick="change ()">Vizag</option>
</select>
<table id="list" style="display: none; ">
<tr>
<td height="87">Par ugu</td>
<td>Jagadamba </td>
<td>Telugu</td>
</tr>
<tr>
<td height="95">Jaa ne Tu Ya Jaane Na</td>
<td>RamaDevi</td>
<td>Hindi</td>
</tr>
<tr>
<td height="163">Ha ncock</td>
<td>Sarada</td>
<td>English</td>
</tr>
</table>
</body>
</html>
[/HTML]
thanks in advance
kash
Comment