Skip to content

Instantly share code, notes, and snippets.

View kangfarih's full-sized avatar
🏠
Working from home

Farih Muhammad kangfarih

🏠
Working from home
View GitHub Profile
@kangfarih
kangfarih / youtubeID.js
Created February 26, 2019 04:16 — forked from takien/youtubeID.js
Get YouTube ID from various YouTube URL using JavaScript
/**
* Get YouTube ID from various YouTube URL
* @author: takien
* @url: http://takien.com
* For PHP YouTube parser, go here http://takien.com/864
*/
function YouTubeGetID(url){
var ID = '';
url = url.replace(/(>|<)/gi,'').split(/(vi\/|v=|\/v\/|youtu\.be\/|\/embed\/)/);