Getting audio src atribute with JQuery -
i want access src atribute of mp3 file inside second "section" element. how do jquery?
<html> <body> <div id="slides"> <section> <h3 class="audio"><audio src="file.mp3" /></h3> </section> <section> <h3 class="audio"><audio src="otherfile.mp3" /></h3> </section> <section> <h3 class="audio"><audio src="audio.mp3" /></h3> </section> </div> </body> </html>
Comments
Post a Comment