I have a problem with playing music. It doesnt play. I want to play music by clicking on the button.
<script>
$(document).ready(function() {
$('.button').submit(function() {
var audio = document.getElementById('audioFile');
audio.play();
});
});
</script>
</head>
<body>
<audio id="audioFile">
<source src="font/sound.mp3" type="audio/mpeg">
</audio>
<div class="inputMessage">
<form method="POST" action="/index.php">
<textarea class="chatMessage" name="text" placeholder="Текст сообщения"></textarea>
<br>
<input class="button" type="submit" name="enter" value="Отправить">
<input type="reset" value="Очистить">
</form>
</div>
</body>