This site does not allow itself to be embedded. You can still read it on the original site — the toolbar below keeps your place in the directory.
An example of example of how to download a blob object in JavaScript. var a = document .createElement( 'a' ); document .body.appendChild(a); a.style.display = 'none' ; var blob = new Blob([audio], {type : 'audio/mpeg' }); var url = window .URL.createObjectURL(blob); a.href = url; a.download = 'file.mp3' ; a.click(); window .URL.revokeObjectURL(url);
Comments
Nothing yet. Say the first thing.
Sign in to join the conversation.