I am using require JS and want to know the best method to use a CDN version of jQuery. I hear the 1.7 version is "AMD" which is supposed to help but can't find a straight example. Hope some RequireJS gurus can help me out.
|
jQuery 1.7 registers itself as an AMD module by the name of 'jquery', so you need to create a mapping for 'jquery' using the paths config:
Note however that RequireJS loads modules asynchronously and out of order, so if you have jQuery plugins you want to use that are not wrapped in See the require-jquery project's README on ways to deal with files that depend on jQuery but do not wrap themselves in |
|||||||||||||||||
|
|
You can include it as a dependency for a module but it's a little flakey. e.g
It's not so good for 2 reasons 1) the jquery file itself isn't a module so the 2) the I haven't had the chance to use this in a 'real' project yet because we haven't upgraded yet, but from my tests i've found that the best way is to include jquery in a script tag, then it works great as a dependency to your modules. Hopefully the following small sample will be helpful:
|
|||||||||||||
|
|
@jrburke's answer does not work for me. According to the RequireJS api doc, you should not include the file extension in the path. So here is the working code:
I have a working example on jsfiddle: http://jsfiddle.net/murrayju/FdKTn/ |
||||
|