Skip to content

Instantly share code, notes, and snippets.

View chrhicks's full-sized avatar

Chris Hicks chrhicks

  • Flow Commerce
  • New York
View GitHub Profile
@chrhicks
chrhicks / uri.js
Created April 22, 2012 15:14 — 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"