hi i have one XML file i just want to replace some path in XML. XML hold path of some images like it has many record like below
tile5url="images/Balcony Sunset Pano_o_480_5.jpg"
so i just want to replace path . i just want to replace "images/" with some other path like "newfolder/images/" or anythings else i have used javascript to read XML using XMLHttpRequest object and generate responseText to read XML
Thanks
tile5url.replace(/(images\/)/, 'newfolder/$1');