Hi guys,
I'm using flexslider for multiple slideshows on a site I'm currently working on, on one of the pages it's sometimes flashing the last slide before the first slide on the page load. How can I stop this?
The problem page is: http://debourg-dev.ch/syselcloud/
Many thanks
You're most likely going to have to set the images to display: none until flexslider loads.
Or, run the plugin after page load.
using jQuery(document).ready(function($) { doesn't seem to make any difference though?
Not .ready(), but .load(). .ready() is different with .load()
.ready()
.load()
$(window).load(function() { // ... });
Hi guys,
I'm using flexslider for multiple slideshows on a site I'm currently working on, on one of the pages it's sometimes flashing the last slide before the first slide on the page load. How can I stop this?
The problem page is: http://debourg-dev.ch/syselcloud/
Many thanks
You're most likely going to have to set the images to display: none until flexslider loads.
Or, run the plugin after page load.
using jQuery(document).ready(function($) { doesn't seem to make any difference though?
Not
.ready(), but.load()..ready()is different with.load()