<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>
<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>