File: D:/HostingSpaces/SBogers109/excellentexecutivesearch.nl/wwwroot/js/languages.js
/**
* Created by Pascal on 22/11/16.
*/
$(function(){
$('.language-selector li a').click(function(){
//get link of the translated page
var redirect = $(this).attr('href');
//set post to set the right language
$.post( "/setLanguage", {lang: $(this).data('language')})
.done(function(data){
//on success go to the translated page
window.location.href = redirect;
});
//prevent link from executing before the language is set
return false;
});
});