Skip to content

Instantly share code, notes, and snippets.

@ifirmawan
Created April 5, 2018 07:34
Show Gist options
  • Save ifirmawan/90fca7e77073e49f9558f3556b0ac8a4 to your computer and use it in GitHub Desktop.
Save ifirmawan/90fca7e77073e49f9558f3556b0ac8a4 to your computer and use it in GitHub Desktop.
Menyalakan bunyi notifikasi melalui jquery
<audio id="notif_audio">
<source src="<?php echo base_url('sounds/notify.ogg');?>" type="audio/ogg">
<source src="<?php echo base_url('sounds/notify.mp3');?>" type="audio/mpeg">
<source src="<?php echo base_url('sounds/notify.wav');?>" type="audio/wav">
</audio>
<button type="button" class="btn-play">
Play !
</button>
$(document).ready(function(){
$(document).on('click','.btn-play',function(){
$('#notif_audio')[0].play();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment