How can one interact with an <audio> element using jQuery, specifically to hide only the "seeking" part of an <audio> element?

I don't think the seeking part can be hidden by using plain HTML.

link|improve this question

67% accept rate
2  
One could use jPlayer, which does all the hard work for you. It even includes a flash-based fallback for when <audio> or the particular codec used isn't supported by the browser. – Andrew Moore Sep 10 '11 at 15:54
I looked at jPlayer, but would rather use a custom own solution if possible. – DT3 Sep 10 '11 at 20:05
There is nothing stopping you from implementing your own UI with jPlayer as a backend... Your users wouldn't know and you get the advantages of jPlayer. – Andrew Moore Sep 10 '11 at 21:45
feedback

1 Answer

If your <audio> tag does not have the "controls" attribute (or, I think if the attribute value is false), then no controls are shown. The HTML5 Boilerplate CSS hides audio elements without controls:

audio:not([controls]) { display: none; }

You shouldn't need JavaScript/jQuery at all.

link|improve this answer
I would only like to hide the "seeking" portion of the <audio> element. I just added the word "only" to the question to make it more clear. – DT3 Sep 10 '11 at 15:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.