Click to See Complete Forum and Search --> : editable


zuzupus
07-31-2003, 08:03 AM
hi,
anybody knows the script for attached jpg,it will be very helpful for me,if anybody let me know about the script

thanks in advance

Exuro
07-31-2003, 06:58 PM
Here's what I came up with:

<html>
<head>
<script type="text/javascript">
<!--
function addItem() {
option = new Option(document.getElementById('selText').value,document.getElementById('selValue').value)
sel = document.getElementById('sel1')
// Use this line if you want the option added to the beginning of the Select:
sel.add(option,1);
// Use this line if you want the option added to the end of the Select:
// sel.add(option,sel.length);
}
//-->
</script>
</head>
<body>
<form name="form1">
Option Text:<br>
<input type="text" id="selText"><br><br>
Option Value:<br>
<input type="text" id="selValue"><br><br>
<input type="button" value="Add Option" onclick="addItem()"><br><br>
<select id="sel1">
<option selected="selected">-- Choose an item --</option>
</select>
</body>
</html>


Hope that works for you!