вы помоему не правильно аякс запрос прописали посм здесь:
http://api.jquery.com/jquery.getjson/
var jqxhr = $.getJSON( "example.json", function() {
console.log( "success" );
})
.done(function() {
console.log( "second success" );
})
.fail(function() {
console.log( "error" );
})
.always(function() {
console.log( "complete" );
});
// Perform other work here ...
// Set another completion function for the request above
jqxhr.complete(function() {
consol
e.log( "second complete" );
});