function redirectToYouTube(videoId) { if (/Android/i.test(navigator.userAgent)) { window.location.href = intent://youtu.be/${videoId}#Intent;scheme=https;package=com.google.android.youtube;end; } else if (/iPhone|iPad|iPod/i.test(navigator.userAgent)) { window.location.href = youtube://watch?v=${videoId}; } else { window.location.href = https://www.youtube.com/watch?v=${videoId}; } } redirectToYouTube(k9lS8LgKjVc);