Node.js examples for String:URL String
Decode a string to URL
function urldecode(str) { return decodeURIComponent(str.replace(/\+/g, '%20')); } // if ($.browser.msie == true) document.execCommand('BackgroundImageCache', false, true);