âš ī¸ Warning âš ī¸ Deprecated Code! This video tutorial contains outdated code.
💡 If you wish to update it, any AI assistant will update the code for you in seconds.

Audio OGG Files Check

Published : November 17, 2014   •   Last Edited : November 24, 2025   •   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();