Only Top Audio_tag Button Plays
I'm starting out with audio on my site; I've previously implemented an audio_tag with a glyph button in one of my views. In a different view, I'm trying to list all of my word obje
Solution 1:
Give each one it's own unique id.
In html ids must be unique. eg "#audioButton1" "#audioButton2" etc... alternatively, don't use ids, use class names eg class="btn btn-default audio-button"
then $(".audio-button").on("click", function()
Post a Comment for "Only Top Audio_tag Button Plays"