I'm trying to feed a Select
as it was selected in another Select
main
<select id="grupo" name="grupo" >
<option>Selecionar Grupo</option>
<?php if(isset($grupo->db->data[0])): ?>
<?php foreach ($grupo->db->data as $grp) : ?>
<option value="<?= $grp->grupo_id ?>"><?= $grp->grupo_nome ?>/option>
<?php endforeach; ?>
<?php endif; ?>
</select>
Select Secondary
<select name="empresa" id="empresa">
</select>
I'm trying to feed with JS :
$(document).ready(function() {
$('#grupo').on("change", function() {
var id = $('select[name=grupo]').val();
$('#grupo_id').val(id);
var url = "empresa_fn.php?acao=Json";
$.getJSON(url, {grupo_id: id}, function (data) {
// não estou conseguindo atribuir o valores para os options
// do select
});
});
});