Hello,
I was having problems with the DOM since elemnets inside of google visualization tables/graphs were loaded before jQuery. Therefore, i realized that i need to load google visualization before jQuery .ready()..
Loading Google visualization is done by:
google.load("visualization", "1", {packages:["linechart","table","piechart"]});
google.setOnLoadCallback(drawGraph);
How can I make sure Google visualizaion is loaded BEFORE running the .ready() function?
Thanks, Joel