Skip to content

Instantly share code, notes, and snippets.

@takien
takien / youtubeID.js
Last active May 3, 2024 12:41
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\/)/);
@takien
takien / takien-mobile-version.php
Created July 17, 2012 04:38
WordPress mobile version plugin.
<?php
/*
Plugin Name: Takien Mobile Version
Plugin URI: http://takien.com
Description: Automatically detects mobile useragent end redirect to mobile version.
Author: takien
Version: 0.1
Author URI: http://takien.com/
*/