rexjiang92
12/17/2015 - 6:41 PM

detect mobile/touch devices and swap video background with an static image bg

detect mobile/touch devices and swap video background with an static image bg

<script>

$(document).ready(function(){

if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
  $('.responsive-video #Liszkay-Vineyard-Estate-Winery').hide();
  $('.responsive-video').addClass('mobile-true');
}

 });
</script>