FULL STACK   ·   UI   ·   UX   ·   GRAPHICS   ·   DEVELOPER   ·   INSTRUCTOR

Adam Khoury

Donate funds to show love and support

Click the button below to donate funds securely online. You can use your PayPal account or a credit card.

Your donations help free up my time to produce more content and assist in covering server costs. It's also a great way to say thanks for the content!

Application Configuration

Adam will be adding options here soon.

Audio OGG Files Check

Published :
Author :
Adam Khoury
Learn to serve up ogg audio files for different browser software. Well into 2014 there are popular browser makers that are not supporting the popular mp3 audio file format. ext = ".mp3"; agent = navigator.userAgent.toLowerCase(); if(agent.indexOf('firefox') != -1 || agent.indexOf('opera') != -1) { ext = ".ogg"; } audio = new Audio(); audio.src = "audio/Stoker"+ext; audio.loop = false; audio.play();