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

  • Home
  • SEARCH
  • 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 8095635
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T21:11:57+00:00 2026-06-05T21:11:57+00:00

I want to implement a html audio player in my project having playlist with

  • 0

I want to implement a html audio player in my project having playlist with it. I gone through many jquery plugins (jplayer,etc…) but that does not fulfill my requirement.

Actually a listing of songs will should be displayed to user having other information with it like (rating,price,time,buy now). Jplayer library provides a utility of playing plylist but there song list is not easily customizable.

Can anybody please help me with an example of such a audio player or near about this or any instructions regarding the same would be great help.

Thanks

  • 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-06-05T21:11:58+00:00Added an answer on June 5, 2026 at 9:11 pm

    A simple demo for Chrome: http://jsfiddle.net/yJfbX/2/

    The playlist is a plain unordered list so it is easy customizable via CSS. Please consider this as a simple proof of concept to create your own playlist, since I’ve not considered different audio container than mp3

    markup

    <ul id="playlist">
        <li data-src="http://....mp3">title 1</li>
        <li data-src="http://....mp3">title 2</li>
        <li data-src="http://....mp3">title 3</li>
    </ul>
    

    jQuery

    var audio    = new Audio();
        playlist = $('#playlist');
    
        playlist.on('click', 'li', function() {
            playlist.find('.current').removeClass('current');
            $(this).addClass('current');
            audio.src = $(this).data('src');
            audio.play();
        });
    
    audio.controls = true;
    document.body.appendChild(audio);
    

    ​

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to implement the looping through the pictures with HTML, CSS, Jquery/Javascript in
I want to implement readmore/less feature. i.e I will be having html content and
http://rndnext.blogspot.com/2009/02/jquery-ajax-tooltip.html I want to implement something like the link above. Now this pops up
I want to implement the Demo shown at http://tablesorter.com/docs/example-pager.html in a mobile application. I
I want to implement a empty div with background color in it. <html> <head>
I want to implement a web page (using HTML/PHP, whatever else), that will populate
I want to implement something similar to this: http://www.kjetilk.com/2011/10/auto-wiring-eventaggregator.html . But instead of using
I want to implement FIFO through a class in Java. Does such a class
I want to implement colour picker event in my html design, please try to
Let's say I'm crazy and I want to implement an basic HTML rendering engine

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.