Hi,
I've got some code that changes the current URL Domain of .com to another URL Domain, such as .co.uk. I'd like it to change any URL Domain (.com, .fr, .de etc) to .co.uk, and not only .com.
My current code is:
If it can be altered slightly, great! :)
Thanks,
Joseph Duffy
I've got some code that changes the current URL Domain of .com to another URL Domain, such as .co.uk. I'd like it to change any URL Domain (.com, .fr, .de etc) to .co.uk, and not only .com.
My current code is:
Code:
if (myVolume == '.co.uk') {
event.target.browserWindow.activeTab.url = currentURL.replace(/\.com/ig, ".co.uk");
}
Thanks,
Joseph Duffy
Comment