Hopefully you can help me clear this up. I\'m using a few jQuery scripts on my site (one being leanModal, which I\'ve used several times in the past without any pro
It looks like you override the $ in some way.
$ is undefined
jQuery return a jQuery object. (function (a,b){return new e.fn.init(a,b,h)})
As @Rocket found in your's source code:
You use jQuery.noConflict(); here
Which free the $ varibale to it's previous state (undefined)
Read noConflict docs:
Description: Relinquish jQuery's control of the $ variable