Skip to content

Instantly share code, notes, and snippets.

@amiika
Last active December 16, 2015 16:59
Show Gist options
  • Save amiika/5466949 to your computer and use it in GitHub Desktop.
Save amiika/5466949 to your computer and use it in GitHub Desktop.
HTML AUDIO API SUPPORT TEST
<!DOCTYPE html>
<html>
<head>
<script>
var context;
window.addEventListener('load', init, false);
function init() {
try {
audioContext = new AudioContext();
alert('Web Audio API is supported!');
} catch(e) {
try {
audioContext = new webkitAudioContext();
alert('Web Audio API is supported with webkit!');
} catch(e) {
alert('Web Audio API is not supported!');
}
}
</script>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment