Sorry for asking simple questions. I have url with like this :
I want to add
/en/
in the middle of my url so it will be change to
thank you for your help
Sorry for asking simple questions. I have url with like this :
I want to add
/en/
in the middle of my url so it will be change to
thank you for your help
Supposing you're in a context where document is available (since your post is taggued jQuery, it's most likely the case):
const href = 'http://sub.maindomain/page/title?foo=bar#hash';
// Build a link element
const link = document.createElement('a');
link.href = href;
// Add '/en' before its pathname
const result = link.protocol + '//' + link.host + '/en' + link.pathname + link.search + link.hash;
console.log(result);