Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

129
Visualizações
Show what's choosen in JavaScript's combobox

Ok so im new to JavaScript and programing in general so i got this kind of assignment that isnt hard but i still cant manage to figure it out...I need to make combo box in form,and create a div outside that form.Then i need JS function that will show what have i choosed from combo box into that div...

<script>
    function omiljeniFilm(){
        var lista=document.getElementById("lista");
        var ispis=lista.options[lista.selectedIndex].text;
        document.getElementById("omiljeni").value=ispis;
    }
</script>
<body>
    <form>
        Izaberi omiljeni film:
    <select id="lista" onchange="omiljeniFilm();">
        <option>Gospodar prstenova</option>
        <option>Hari Poter</option>
        <option>Pobesneli Maks</option>
        <option>Titanik</option>
    </select>    
    </form>
    <div id="omiljeni">
    </div>
</body>

I used the same function that i write before for very similar assignment that adds choosen words to forms input element but it doesnt work with this div outside the form...

about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

You need two changes

  • To get the select value use the value property
  • To set the div text use the innerText property

the function would be:

function omiljeniFilm(){
    var lista=document.getElementById("lista");
    document.getElementById("omiljeni").innerText=lista.value;
}
about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda