Files
CRM/layouts/v7/lib/jquery/jquery-play-sound/jquery.playSound.js
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

17 lines
597 B
JavaScript

/**
* @author Alexander Manzyuk <admsev@gmail.com>
* Copyright (c) 2012 Alexander Manzyuk - released under MIT License
* https://github.com/admsev/jquery-play-sound
* Usage: $.playSound('http://example.org/sound.mp3');
**/
(function($){
$.extend({
playSound: function(){
return $("<embed src='"+arguments[0]+".mp3' hidden='true' autostart='true' loop='false' class='playSound'>" + "<audio autoplay='autoplay' style='display:none;' controls='controls'><source src='"+arguments[0]+".mp3' /><source src='"+arguments[0]+".ogg' /></audio>").appendTo('body');
}
});
})(jQuery);