Created
December 10, 2012 04:35
-
-
Save marti1125/4248400 to your computer and use it in GitHub Desktop.
Require js and Jquery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
in the html file | |
<script type="text/javascript" data-main="js/app" src="js/require-jquery.js"></script> | |
in the javascript file | |
require(["jquery", "kendo.web.min"], function($){ | |
$(function() { | |
alert('Require.js!!') | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment