Jump to content
Fórum Script Brasil
  • 0

Busca No Select


raphaelcarlos

Question

salve rapa ..

gostaria de saber como fazer uma busca em um select .. ..

pois tenho uma pagina em php ... com bd e os resultados aparecem em um select por isso ele fica muito grande ..

eu ate já vi em um site algo parecido ... mas não lembro onde é ... se der para ajudar ...

acho que deu para entender ne ...

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

cosigui fazer assim ...

<script language="javascript">
function trocaOpcao(valor, objSel) {
    for (i=0; i < objSel.length; i++){
    qtd = valor.length;
        if (objSel.options[i].text.substring(0, qtd).toUpperCase() == valor.toUpperCase()) {
        objSel.selectedIndex = i;
            break;
        }
    }
}
</script>
ai no input coloca assim ...
onkeyup="trocaOpcao(this.value, document.form.combo);"

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...