$('button#load-pokemon').click(function(){
$.get('/data/pokemon-small.json')
.success(function(data_pokemon){
$('.myviz').html('number of records load:' + data_pokemon.length)
})
})
$('button#load-fcq').click(function(){
$.get('/data/fcq.clean.json')
.success(function(data_fcq){
$('.myviz').html('number of records load:' + data_fcq.length)
})
})
// TODO: add an event handler for the "Load FCQ" button to load the FCQ dataset
// into the memory, and display a message in the Viz box to indicate how many records
// are loaded. The data is located in '/data/fcq.clean.json'