Hello
I have two combos, another category category! both are already populated with database values! I would like that when selecting category, the category type combo only list the category type values of the selected category without using ajax for search and filter! as already comes all filled in a way to do via javascript even to filter this data! is it possible?
Example: Combo Category:
<select name="cat" id="cat">
<option value="">Todas as Categorias</option>
<option value='11'>Delivery</option>
<option value='10'>Gastronomia</option>
</select>
Combo Tipo de Categoria ( lista todos os tipos)
<select name="tcat" id="tcat">
<option value="">Todas as Categorias</option>
<option value='11'>Comida de Buteco</option>
<option value='10'>Francesa</option>
<option value='12'>Comida de Buteco</option>
<option value='14'>Comida Saudavel</option>
<option value='15'>Chinesa</option>
<option value='19'>Pizzaria</option>
</select>
When you select the category, display the related results of the category in the category type combo without using ajax