Skip to content

Instantly share code, notes, and snippets.

View ZoranJambor's full-sized avatar

Zoran Jambor ZoranJambor

View GitHub Profile
@ZoranJambor
ZoranJambor / uri.js
Last active September 28, 2016 13:46 — forked from jlong/uri.js
URI Parsing with Javascript
/**
* Parse URL
*
* @param {String} url
* @return {Object}
*/
parseURL = function(url) {
var el = document.createElement("a");
el.href = url || document.location.href;