Node.js examples for DOM:Element
Get base url using <a> element
function getBaseURL (url) { var a = document.createElement('a'); a.href = url;/*from ww w. j a v a 2 s .c o m*/ return a.protocol + "//" + a.hostname + ":" + a.port; }