Choosing a selection results in a full page refresh.
Become a Coconut Insider
Embark on a journey through the world of electronics. Sign up now for exclusive perks and knowledge!
Similar Products
document.addEventListener('DOMContentLoaded', function() {
var videos = document.querySelectorAll('video');
videos.forEach(function(video) {
video.setAttribute('autoplay', 'true');
video.setAttribute('muted', 'true'); // Optional: This ensures that videos autoplay without requiring user interaction.
video.setAttribute('loop', 'true'); // Optional: Loops the video after it finishes.
});
});
document.addEventListener('DOMContentLoaded', function() {
// Check if the browser supports Speech Recognition
if (!('webkitSpeechRecognition' in window || 'SpeechRecognition' in window)) {
// If Speech Recognition is not supported, hide the speech search element
var speechSearch = document.querySelector('.search__speech.input-group-append.hidden');
if (speechSearch) {
speechSearch.style.display = 'none';
}
}
});