Hey Daniel,
Thanks for your support and help. That set me on the right path and I was able to achieve what i wanted. I have posted the JQuery i used in case someone else faces the same issue:
$("#french-button").click(function() {
$.cookie("lang", "fr");
});
if ($.cookie('lang')) {
window.location = 'yoururl';
};
One small thing though, whenever someone clicks on the ‘English’ translation in the French website, it always redirects back to the french, regardless of what page they are on. Is there anyway to override the cookie or override that re-direct.
Thanks a million and I do love this plugin.