Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

138
Vistas
Adding an option to an HTML drop-down list using Javascript does nothing

I have copied several examples from this and other sites about how to add options to an HTML drop down list, but yet nothing happens. Here is my script:

<!DOCTYPE html>
<html><head></head>
<body>
<form>
<select name="p1customer" id="p1customer" onclick="addPC()">
<option>Apple</option>
</select>
<button type="button" onclick="addPC()">Insert option</button>
</form>
<script>
function addPC(){
            let x = document.getElementById("p1customer");
            let option1 = document.createElement("pc1");
            option1.text = "myCustomer";
            x.add(option1);     
    }  
</script>   
</body> 
</html>

Whether I click on my drop-down or the button the option never gets added. I have placed alert functions after each line of code and have verified that the objects exist, but the x.add method does nothing. It doesn't add the option to my list.

What am I missing?

about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

I merely had to assign a value to the option as seen below and everything works.

function addPC(){
  let x = document.getElementById("p1customer");
  let option1 = document.createElement("pc1");
  option1.text = "myCustomer";
  option1.value = "myC";
  x.add(option1);     
}
about 4 years ago · Juan Pablo Isaza Denunciar

0

You have two mistakes in your code:

  1. pc1 is not a tag name. so you cannot use it in the createElement function.
  2. For adding an option you should use x.appendChild instead of x.add.
function addPC() {
    let x = document.getElementById("p1customer");
    let option1 = document.createElement("option");
    option1.text = "myCustomer";
    x.appendChild(option1);
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda