Поскольку jQuery включен в HTML, его можно использовать для изменения функции next
<script>
function next(){
if($(this).closest('.row').next('.row').length){
$(this).closest('.row').find('audio')[0].pause();
$(this).closest('.row').hide();
$(this).closest('.row').next('.row').show();
$(this).closest('.row').next('.row').find('audio')[0].play();
}
}
</script>
Теперь о первом элементе можно позаботиться двумя способами. Во-первых, вы можете включить это в конец body
элемента
<script>
$('.row#d002').show(); // using d002 id here, replace it with id of first element with class='row'
$('.row#d002').find('audio')[0].play();
</script>
В противном случае вы можете добавить атрибут autoplay
в первый элемент audio
и удалить display:none
из первого элемента с помощью class='row'