Skip to content

Instantly share code, notes, and snippets.

View chiunhau's full-sized avatar
🐢
I may be slow to respond.

Chiun Hau You chiunhau

🐢
I may be slow to respond.
View GitHub Profile
@chiunhau
chiunhau / uri.js
Last active August 29, 2015 14:26 — forked from jlong/uri.js
URI Parsing with Javascript
var parser = document.createElement('a');
parser.href = "http://example.com:3000/pathname/?search=test#hash";
parser.protocol; // => "http:"
parser.hostname; // => "example.com"
parser.port; // => "3000"
parser.pathname; // => "/pathname/"
parser.search; // => "?search=test"
parser.hash; // => "#hash"
parser.host; // => "example.com:3000"