I have made a website for two different languages each being in two different folders en and bn. I want to switch between the folders on href element click using jquery.
<a class="eng_link " style="" href="#"> English</a>
<a class=" link_active bangla_link " style="" href="#">বাংলা / </a>
Say, I am currently on www.example.com/en/content?id=1. While clicking the link for english it will redirect to the url www.example.com/bn/content?id=1 and vice versa. Only the bn part of the url will change to en keeping other parts the same. How can I do this?