Skip to content

Instantly share code, notes, and snippets.

@robdodson
Created March 14, 2013 02:26
Show Gist options
  • Select an option

  • Save robdodson/5158317 to your computer and use it in GitHub Desktop.

Select an option

Save robdodson/5158317 to your computer and use it in GitHub Desktop.
require
define(['require', 'jquery'], function(require, $) {
$(function() {
// do a buncha stuff with jquery on document load...
// later on...
require(['d3'], function(d3) {
// now it's loaded d3
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment