Skip to content

Instantly share code, notes, and snippets.

@ClaudiuCreanga
Created July 30, 2016 23:25
Show Gist options
  • Save ClaudiuCreanga/17640e10f2d71ba64d5f71a371f6cb35 to your computer and use it in GitHub Desktop.
Save ClaudiuCreanga/17640e10f2d71ba64d5f71a371f6cb35 to your computer and use it in GitHub Desktop.
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"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment