This slight addition allows you to add a sound notification for DVZ Shoutbox when a new message is posted, using its internal hooks system.
1. Open the attached file and upload the dvz_shoutbox.mp3 file to the images/ directory on your server
dvz_shoutbox.zip (Size: 1.27 KB / Downloads: 3)
2. Open the dvz_shoutbox template (Global Templates) and add the following code after {$javascript}
1. Open the attached file and upload the dvz_shoutbox.mp3 file to the images/ directory on your server

2. Open the dvz_shoutbox template (Global Templates) and add the following code after {$javascript}
Code:
<script>
dvz_shoutbox.callbacks['update'].push(function(){
if ($('#shoutbox .entry.new').length) {
var audio = new Audio(rootpath + '/images/dvz_shoutbox.mp3');
audio.volume = 0.2;
audio.play();
}
});
</script>