$(document).ready(function() {
    
    $('#id_username').change(function (){
        $.ajax({
            type: 'GET',
            url: '/zdrava-krava/provjeri-ki?wanted='+this.value,
            data: {},
            dataType: 'json',
            success: function(msg){
                if (msg.exist) {
                    lb_messages("Imenjaci", msg.message, "U redu", '#id_username');
                };
            },
        });
        
    });
    
    var ac_options = { 
        serviceUrl: '/geo/auto-complete',
        minChars: 3
    };
    
    var idl = $('#id_location').autocomplete(ac_options);
    
});
