HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers104/angeliekly.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;
    });

});