javascript - Undefined error when loading slider -


i loading 2 sliders on page - , of main slider working. have secondary slider working until - see error

uncaught typeerror: undefined not function (anonymous function)  f.event.handle  i.handle.k 

i know it's hard out of script files here - here call second slider giving error. thoughts?

<script type="text/javascript" charset="utf-8">    $(window).load(function() {      $('.flexslider').flexslider();   }); </script> 

updated jquery - , found conflicts found work.

<script type="text/javascript">jquery.noconflict();</script>  <script src="jquery.flexslider.js"></script>  <script type="text/javascript">   jquery.noconflict();   jquery(window).load(function() {      jquery('.flexslider').flexslider({       animation: "slide"       });    }); </script> 

Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -