Buy me a coffee

#100 039

<script>
$(document).ready(function () {
    $('a.grid-item video').each(function () {
        this.pause();
    });
    $('a.grid-item video').hover(
        function () {
            this.currentTime = 0;
            this.play();
        },
        function () {
            this.pause();
        }
    );
});
</script>