I want to get the relative url from absolute url in javascript using regex and replace method.
I tried following but it is not working
var str="http://localhost/mypage.jsp";
document.write(str.replace("^[\w]*\/\/[\w]*$",""));
Any help appreciated.
Thanks
/mypage.jspto providedhttp://localhost/mypage.jsp. – user549757 Jun 7 '11 at 10:11