All of The Fat Of The land, at once

Another experiment with The Prodigy body { padding: 30px; } a { display: inline-block; margin-bottom: 20px; color: #000; font-family: Arial, sans-serif; } Lets go $(document).ready(function() { $('#play-video').on('click', function(ev) { debugger; for (counter = 0; counter ...

May 3, 2020 · 1 min · Me

Aural Assault

Based on something I saw ears ago at The baltic that I’ve never managed to track down. Bring the noise $(document).ready(function() { $('#play-video').on('click', function(ev) { $("#video")[0].src += "&autoplay=1"; debugger; var counter=1; var myVar = setInterval(myTimer, 7000); function myTimer() { console.log("#video"+counter); $("#video"+counter)[0].src += "&autoplay=1"; counter++; console.log("#video"+counter); } if(counter==9){ clearInterval(myVar); } ev.preventDefault(); }); }); ...

May 3, 2020 · 1 min · Me