I am working on a multilangual website right now. I am currently including the related language file ('lange/_en.php') for language phrases. To change languages users will select their language from a < select > item. The thing i want to do is changing related phrases (and urls too if possible) in the page without refreshing or submitting the page.
I remember i saw something like this in web but i have no idea where.
Any help or any ideas about how this thing can be done?
,
and then just hide the other languages $("#lang_en").click(function () { $('p[lang|="sv"]').hide(); }); ? Instant language switching and no page-reloading would be neccessary.
– Systembolaget Jul 21 '12 at 08:52