1

I'm currently using Bootstrap's table and i can't figure out why <audio> tag is not appearing inside the <td>

<td><audio src="mysrc.extension"></audio></td>
Siguza
  • 21,155
  • 6
  • 52
  • 89
Noobie
  • 55
  • 2
  • 10
  • possible duplicate of [Audio tag GUI not visible](http://stackoverflow.com/questions/11968309/audio-tag-gui-not-visible) – Ryan Sep 01 '15 at 21:23

1 Answers1

4

Your audio player is not displaying because your <audio>....</audio> tag is missing the controls attribute.

Try this:

<td><audio src="mysrc.extension" controls></audio></td>

Q. Wait what is the controls attribute for??

A. The controls attribute adds audio controls, like play, pause, and volume to the audio player.

AndrewL64
  • 15,794
  • 8
  • 47
  • 79