I am using a mixture of d3.js and jQuery to create visualizations. I have 3 functions that I try to put into an array and then execute one after the other, but I donβt think Iβm doing it right, because when I click play, nothing happens. Here is my code:
var functionsArray = [oct12,oct13,oct14]; $('#play').click(function(){ for (var i = 0; i < functionsArray.length; i++){ functionsArray[i]; }
I will raise jsfiddle soon ...
source share