Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7528085
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T04:16:49+00:00 2026-05-30T04:16:49+00:00

How could we make some audio in html5 play after another one has finished?

  • 0

How could we make some audio in html5 play after another one has finished?

I have tried with jquery delay() function but it wont work at all, is it possible using pause() in html5 audio with timer instead ? For example, pause('500',function(){});?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T04:16:51+00:00Added an answer on May 30, 2026 at 4:16 am

    Here’s a JSLinted, unobtrusive Javascript example demonstrating how to handle and use the ended mediaevent. In your particular situation, you would trigger playback of the second audio file in your ended event handler.

    You can use the code below or run the test fiddle.

    Click an item in the playlist to begin playback. After one audio ends, the next will begin.

    markup: (note the deliberate avoidance of whitespace between <li> elements – this is to simplify traversing the DOM with nextSibling.)

    <audio id="player"></audio>
    
    <ul id="playlist"><li data-ogg="http://www.lunerouge.org/sons/sf/LRWeird%201%20by%20Lionel%20Allorge.ogg">Space 1</li><li data-ogg="http://www.lunerouge.org/sons/sf/LRWeird%202%20by%20Lionel%20Allorge.ogg">Space 2</li><li data-ogg="http://www.lunerouge.org/sons/sf/LRWeird%203%20by%20Lionel%20Allorge.ogg">Space Lab</li></ul>
    
    <button id="stop">Stop</button>
    

    script:

    // globals
    var _player = document.getElementById("player"),
        _playlist = document.getElementById("playlist"),
        _stop = document.getElementById("stop");
    
    // functions
    function playlistItemClick(clickedElement) {
        var selected = _playlist.querySelector(".selected");
        if (selected) {
            selected.classList.remove("selected");
        }
        clickedElement.classList.add("selected");
    
        _player.src = clickedElement.getAttribute("data-ogg");
        _player.play();
    }
    
    function playNext() {
        var selected = _playlist.querySelector("li.selected");
        if (selected && selected.nextSibling) {
            playlistItemClick(selected.nextSibling);
        }
    }
    
    // event listeners
    _stop.addEventListener("click", function () {
        _player.pause();
    });
    _player.addEventListener("ended", playNext);
    _playlist.addEventListener("click", function (e) {
        if (e.target && e.target.nodeName === "LI") {
            playlistItemClick(e.target);
        }
    });​
    
    
    ​
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have checked the source codes of ASIHTTPRequest and could not make sure which
I have an interesting design problem and I was hoping you all could make
I know some javascript, html and css. However, i have no idea how could
I know you could make a helper pretty easily given the data. So, if
In C# I sometimes wish I could make special methods for certain instantiations of
Is there a python lib that could make a 2-dimensional list of (R,G,B) data
Ages ago when I was a java developer I could make separate ant scripts
I would like to produce an executable that could make an update verification before
I know I could just make all the Mix_Musics public, and not worry about
In the following scenaio, how could I make use of AJAX to check if

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.