Skip to content

Instantly share code, notes, and snippets.

@ESeufert
Created May 2, 2014 09:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ESeufert/fccee10fee47a76810f8 to your computer and use it in GitHub Desktop.
Save ESeufert/fccee10fee47a76810f8 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
var data = getData();
buildConsole(data);
resetCharts(data);
$('#country-selector').change(function() {
var metrics = cloneData(data);
$('#country-selector').stop().css("background-color", "#FFFF9C").animate({ backgroundColor: "#CCFFE6"}, 1500);
resetCharts(metrics);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment