$(document).ready(function() {
console.log(getJ());
function getJ() {
$.getJSON('json.json', function(data) {
$.each(data, function(key, val) {
console.log(key);
});
});
}
});
$(document).ready(function() {
con