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

apache - Remove .php and add trailing slash in url using htaccess not loading css -

javascript - jQuery show full size image on click -