https://github.com/markirby/FlexSlider-ManualDirectionControls
FlexSlider v2.1 full screen slides and browser resize problem
http://www.freshdesignweb.com/fashion-responsive-slider-tutorial.html
$(window).resize(function() {
var ww = $(window).width();
$('.flexslider ul li').each(function() {
$(this).width(ww);
});
});| $(window).load(function() { | |
| $('.flexslider').flexslider({ | |
| directionNav : false, | |
| animation: "slide", | |
| start: function(slider) { | |
| $('.slides li img').click(function(event){ | |
| event.preventDefault(); | |
| slider.flexAnimate(slider.getTarget("next")); | |
| }); | |
| } | |
| }); | |
| }); |