Document.ready vs window.load

I implemented a custom slider plugin called flexslider2 by woothemes and It worked in chrome and safari, but not firefox and IE. I figured out that if I moved my javascript/jQuery code that is used to call call the slider from jQuery(document).ready(function() { } to $(window).load(function() { } it fixed the problem

Leave a Reply