Skip to content

Instantly share code, notes, and snippets.

@ali-master
Created December 27, 2016 00:15
Show Gist options
  • Save ali-master/d334e80a8ef8baeac24964bc971f67f7 to your computer and use it in GitHub Desktop.
Save ali-master/d334e80a8ef8baeac24964bc971f67f7 to your computer and use it in GitHub Desktop.
Play new Message Sound

Play new Message Sound

function playNewMessageSound(src) {
	if(!src || typeof src !== "string") return;

    var audio = document.createElement('audio');
    if (audio) {
        audio.src = src;
        audio.autoplay = true;
    } else
        document.body.appendChild('<embed src='+ src +' autostart="true" loop="false" hidden="true" />');
};

Usage

new playNewMessageSound("audio.mp3");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment