I am currently adding all javascript files to HTML <head>after uglying and using these jquery functions to check if the document is ready
$( document ).ready(function() {}); OR $(function() {});
Is it possible to fire an event when d3js is ready? (e.g. cordova deviceReady)
I want to remove jquery, at present I am dependent only on the two jquery functions listed above, and also triggering an event will help to initialize the data set in several files
source
share