How to Stop the Slider in Window Resizing

Stop the Slider in Window Re sizing :

<script>
  jQuery(document).ready(function () {
  //window ready function
  var window_width = jQuery(window).width();
  if ( window_width < 400 || window_width == 400 ) {
	jQuery('.cycle-slideshow').cycle('pause');	
  }
  });
  jQuery(window).resize(function () {
  //window resize function
  var window_width = jQuery(window).width();
  if ( window_width < 400 || window_width == 400 ) {
	jQuery('.cycle-slideshow').cycle('pause');	
  }
  });
</script>

Leave a Reply

Your email address will not be published. Required fields are marked *