$(document).ready(function(){ if( $(window).width() > 992 ) { AOS.init({ duration: 1200, once: true }); } $(window).resize(function(){ if( $(window).width() > 992 ) { AOS.init({ duration: 1200, once: true }); } }); jQuery( document ).ready(function($) { $('video').click(function() { this.paused ? this.play() : this.pause(); }); }); });