in Education by
When a certain event occurs, I want my website to play a short notification sound to the user. The sound should not auto-start (instantly) when the website is opened. Instead, it should be played on demand via JavaScript (when that certain event occurs). It is important that this also works on older browsers (IE6 and such). So, basically there are two questions: What codec should I use? What's best practice to embed the audio file? ( vs. vs. Flash vs. ) JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
2021 solution function playSound(url) { const audio = new Audio(url); audio.play(); } Browser support Edge 12+, Firefox 20+, Internet Explorer 9+, Opera 15+, Safari 4+, Chrome Codecs Support Just use MP3 Old solution (for legacy browsers) function playSound(filename){ var mp3Source = ''; var oggSource = ''; var embedSource = ''; document.getElementById("sound").innerHTML='' + mp3Source + oggSource + embedSource + ''; }
Browser support (Modern browsers) (Fallback) Codes used MP3 for Chrome, Safari and Internet Explorer. OGG for Firefox and Opera.

Related questions

0 votes
    When a certain event occurs, I want my website to play a short notification sound to the user. The ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 20, 2022 in Education by JackTerrance
0 votes
    which button is used to navigate through the slides, play sound or video clips Select the correct answer from above options...
asked Dec 19, 2021 in Education by JackTerrance
0 votes
    which button is used to navigate through the slides, play sound or video clips Select the correct answer from above options...
asked Dec 18, 2021 in Education by JackTerrance
0 votes
    Rithwika wants to help her visually challenged elderly uncle to maintain the room temperature by switching on AC; ... help ASAP Select the correct answer from above options...
asked Nov 30, 2021 in Education by JackTerrance
0 votes
    How to add your app to notification center? I want to create an custom link that will appear in ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 12, 2022 in Education by JackTerrance
0 votes
    How to add your app to notification center? I want to create an custom link that will appear in ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 10, 2022 in Education by JackTerrance
0 votes
    Delete the branch starfeature in GitHub. Which channel would receive notification for this event? A. Stakeholders and ... . Stakeholders C. Starprojectteam D. None of the options...
asked Dec 23, 2022 in Technology by JackTerrance
0 votes
    Delete the branch starfeature in GitHub. Which channel would receive notification for this event? A. Stakeholders and ... . Stakeholders C. Starprojectteam D. None of the options...
asked Dec 16, 2022 in Education by JackTerrance
0 votes
    I have a custom toast notification which has an image and text. The custom toast works fine however I ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 30, 2022 in Education by JackTerrance
0 votes
    I make an alarm clock app, and I want when my device is locked and alarm start calling see a ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 3, 2022 in Education by JackTerrance
0 votes
    Which event is called once notification system is initialized? a)notification b)register c)registration d)started...
asked Apr 28, 2021 in Technology by JackTerrance
0 votes
    Which method is used to instantiate the Push notification system? a) constructor b) instanciate c) init d) create...
asked Dec 11, 2020 in Education by Editorial Staff
0 votes
    If a Siren sounds for every 5 seconds, how many times will it sound in ¾ of an hour? A) 541 times B) 540 times C) 450 times D) 275 times...
asked Feb 14, 2021 in Education by JackTerrance
0 votes
    I have a scenario that I want to implement in Laravel. I have already implemented this kind of approach ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 26, 2022 in Education by JackTerrance
...