When I request twitter feeds, the profile url that is returned contains backslashes in this format:
"http:\/\/a0.twimg.com\/profile_images\/2419298032\/image_normal.jpg"
Is there a way to eliminate the backslashes so that it appears like this?
"http://a0.twimg.com/profile_images/2419298032/image_normal.jpg"
Thank you!
P.S. It seems that using
x=x.replace(/\/gi, "");
is not effective...