Validate YouTube URL or ID.
CAUTION : If your search word is 11 or 12 characters long, you might get it validated as video ID.
To avoid above, add one more condition to yt_validate
if (url.startsWith('https') && yt_validate(url) === 'video') { // YouTube Video Url.} Copy
if (url.startsWith('https') && yt_validate(url) === 'video') { // YouTube Video Url.}
YouTube URL OR ID
'playlist' | 'video' | 'search' | false Copy
'playlist' | 'video' | 'search' | false
Validate YouTube URL or ID.
CAUTION : If your search word is 11 or 12 characters long, you might get it validated as video ID.
To avoid above, add one more condition to yt_validate