Skip to content

Instantly share code, notes, and snippets.

@joshvermaire
Created July 23, 2012 00:30
Show Gist options
  • Save joshvermaire/3161473 to your computer and use it in GitHub Desktop.
Save joshvermaire/3161473 to your computer and use it in GitHub Desktop.
define(['jquery'], function($) {
return $(document.body).on('click', function(e) {
return alert('hi');
});
});
<!DOCTYPE HTML>
<html>
<head>
<link href="/assets/images/favicon.ico" rel="shortcut icon" />
</head>
<body>
<script data-main="/assets/js/main" src="/assets/js/lib/require.min.js"></script>
</body>
require({
paths: {
jquery: './lib/require-jquery'
}
}, ['events'], function() {
console.log('loaded')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment