programming-examples/js/Htmldom/Remove items from a dropdown list.js
2019-11-15 12:59:38 +01:00

5 lines
133 B
JavaScript

function removecolor()
{
var x=document.getElementById("colorSelect");
x.remove(x.selectedIndex);
}