GUIA DE LOJAS NUMISMÁTICAS - FISÌCAS no Kuwait - Koweit
Coleções de Cédulas e Moedas Brasileiras © 2014. Todos os direitos reservados.
(8318)', data: '8318' },{ value: 'DANI VENTURA (8319)', data: '8319' }, //{ value: 'Andorra', data: 'AD' },
// ...
//{ value: 'Zimbabwe', data: 'ZZ' }
];
$('#autocomplete').autocomplete({
lookup: colecionadores,
onSelect: function (suggestion) {
$('#codColecionador').val(suggestion.data);
}
});
function debounce(fn, delay) {
var timer = null;
return function () {
var context = this, args = arguments;
clearTimeout(timer);
timer = setTimeout(function () {
fn.apply(context, args);
}, delay);
};
}
$(".pais").change(debounce(function(){
var id = $(this).val();
$.post("ajaxEstados.php",{id:id}, function(data){
console.log( data );
data = $.parseJSON( data );
$(".estados").html("
Selecione ");
for( var i=0; i< data.length; i++ ) {
$(".estados").append("
"+data[i].nome+" ");
}
});
},500));