简体   繁体   中英

jquery statement not working in ie9 object doesn't support this property or method

having a nightmare.. my website is working in all my browsers except for well you probably can guess what for ie9.. im using 2 jquery plugins one of them is flexslider..

it says in the console that the object doesn't support this property or method flexslider and points the line

1st bug - $('.flexslider').flexslider({

        <script type="text/javascript" src="js/jquery.flexslider.js"></script>

       <script type="text/javascript" charset="utf-8">
        $(function() {
           $('.flexslider').flexslider({
               animation: "slide",
                directionNav: false
             }); 
         });
   </script>

2nd bug - `$( '#cbp-qtrotator' ).cbpQTRotator();

      <script src="js/jquery.cbpQTRotator.js"></script>
        <script>
         $( '#cbp-qtrotator' ).cbpQTRotator();
        </script>

anyone know how to fix this to make it work on ie9 would be a real great help.. the site is www.fuss-beauty.com

** UPDATE * *

managed to solve my problem... was uploading two jquery files.. didn't realise foundation came with a js file... so annoying.... so i have now relised.. you can only have one js file running... just let everyone know...

I managed to solve my problem: I was uploading two jquery files, didn't realise foundation came with one. So annoying, I now have realized you can only have one js file runningat the same time.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM