3

So I have this page where I have a bxslider with images inside some tabs, I have the bxslider function set to load before the tabs but when I go to the tab where the bxslider is the images haven't loaded. When I refresh the page they will be there. How do I get them to load so that when a person goes to that tab they are already there and not a blank section? Thanks!

http://jsfiddle.net/r1ma11tj/

There are a lot of missing images, sorry I'm not sure how to add images to jsfiddles. Here's a live link to look at...

http://morecleanenergy.com/graphics/testing/mass/Mass.html

This is my call function right before the body tag.

<script type="text/javascript">
 $(document).ready(function () {
     $('.bxslider').bxSlider();
     $('#tab-container').easytabs();
 });
  </script>

The bxslider is on the Why CEC page, it has a light blue background and it's the second item from the top.

IAMABANANA
  • 145
  • 2
  • 18

1 Answers1

1

/** * BxSlider v4.1.2 - Fully loaded, responsive content slider * http://bxslider.com * * Copyright 2014, Steven Wanderski - http://stevenwanderski.com - http://bxcreative.com * Written while drinking Belgian ales and listening to jazz * * Released under the MIT license - http://opensource.org/licenses/MIT */

/*! jQuery v3.0.0-alpha1 | (c) jQuery Foundation | jquery.org/license */

Uncaught TypeError: Cannot read property 'indexOf' of undefined

use jQuery v1.9, solved.

/*! jQuery v1.9.1 | (c) 2005, 2012 jQuery Foundation, Inc. | jquery.org/license

Ganiks
  • 103
  • 1
  • 1
  • 11