SpeechSynthesisUtterance
, при переходе в этом же окне на другую страницу останавливалось озвучивание текста?<button class="let-speak" onclick="speek();">Произнести вслух</button>
<input id="text" value="">
<script>
function speek() {
window.speechSynthesis.speak(new SpeechSynthesisUtterance(document.getElementById("text").value))
}
</script>