javascript - BigVideo.js - Uncaught TypeError: undefined is not a function -
i'm trying add bigvideo.js plugin website, when follow simple example provide on website seen below
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> <script type="text/javascript" src="/js/imagesloaded.pkgd.min.js"></script> <script type="text/javascript" src="/js/video.js"></script> <script type="text/javascript" src="/js/bigvideo/lib/bigvideo.js"></script> <script type="text/javascript"> var bv; $(function() { // initialize bigvideo bv = new $.bigvideo(); bv.init(); bv.show('http://video-js.zencoder.com/oceans-clip.mp4',{ambient:true}); }); </script> i following error
uncaught typeerror: undefined not function can why i'm getting error? there i'm missing here? thank you!
this error comes missing jquery library, checked plugin website , says needs jquery-ui didn't include it.
hope fixes issue
Comments
Post a Comment