Cita:
Iniciado por Montes28 function cargar_usuarios() {
$.ajax({
url: 'views/cargar_usuarios.php',
type:'get',
cache:false,
success: function(data) {
$('#div_tabla_usuario').html(data);
document.getElementById('categoria').options[0].checked = true;
}
});
}
Código Javascript
:
Ver originalfunction cargar_usuarios() {
* * $.ajax({
* * * * *url: 'views/cargar_usuarios.php',
* * * * *type:'get',
* * * * *cache:false,
* * * * *success: function(data) {
* * * * * * * $('#div_tabla_usuario').html(data);
* * * * *}
* * });
document.getElementById('categoria').options[0].checked = true;
}