Reputation: 7782
So in HTML5 Audio Tag, by adding the "control" attribute, you get some pre-defined controls. How do I add and remove from this?
More specifically, I would like to remove the current seek time. And add a play speed button.
Is this possible?
Upvotes: 0
Views: 113
Reputation: 943108
You either have native controls or you do not.
If you want to have some controls but not all the native controls, then you must implement them yourself using the JavaScript APIs.
Upvotes: 1