skip to Main Content

Javascript – How to assign different audio to different buttons after clicked event

<h1 id="title">Drum 🥁 Kit</h1> <div class="set"> <button class="w drum">w</button> <button class="a drum">a</button> <button class="s drum">s</button> <button class="d drum">d</button> <button class="j drum">j</button> <button class="k drum">k</button> <button class="l drum">l</button> </div> var tekan = document.querySelectorAll(".drum"); tekan.forEach(drum => { drum.addEventListener("click", play); }) function play()…

VIEW QUESTION

PHP – Limit and offset foreach loops

I am going to add limit and offset to this loop: <?php $images = get_field('am_c_gallery'); if( $images ): ?> <?php foreach( $images as $image ): ?> <div class="item-big"></div> <?php endforeach; ?> <?php endif; ?> How can I add offset 1…

VIEW QUESTION
Back To Top
Search