1
I created a search button and some search options within the Divs .opcao
. How do I make it so that only the divs
where the contents of the button contain the words typed in the search field?
For example, if I type 'register' only the Divs with the contents of the buttons should appear cadastrar novo cliente
, cadastrar novo funcionário
and cadastrar novo produto
.
<input type="search" name="q" class="search-text" placeholder="Procurar..." autocomplete="off" id="textFind">
<div class="pesquisas">
<div class="opcao">
<a>Agenda</a>
</div>
<div class="opcao">
<a>Lista de clientes</a>
</div>
<div class="opcao">
<a>Cadastrar novo cliente</a>
</div>
<div class="opcao">
<a>Lista de fornecedores</a>
</div>
<div class="opcao">
<a>Cadastrar novo fornecedor</a>
</div>
<div class="opcao">
<a>Lista de produtos</a>
</div>
<div class="opcao">
<a>Cadastrar novo produto</a>
</div>
</div>