How do I add and remove specific controls on an HTML5 audio player? I\'d like to remove the volume control, time display, and the progress bar. I\'m using the following co
You can't mix and match native controls. You either have all the native controls or you have no native controls.
If you want some controls, then you'll need to reproduce them using the JavaScript APIs and DOM.