/** * @author Alexander Manzyuk * Copyright (c) 2012 Alexander Manzyuk - released under MIT License * https://github.com/admsev/jquery-play-sound * Usage: $.playSound('http://example.org/sound') * $.playSound('http://example.org/sound.wav') * $.playSound('/attachments/sounds/1234.wav') * $.playSound('/attachments/sounds/1234.mp3') * $.stopSound(); **/ (function ($) { $.extend({ playSound: function () { return $( '' ).appendTo('body'); }, stopSound: function () { $(".sound-player").remove(); } }); })(jQuery);