Created
May 30, 2018 13:18
-
-
Save coderkan/ad12c0cf45eac4a25193e044162c762d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function() { | |
// Default Language | |
changeLanguage("en"); | |
// Tr button click | |
$("#tr_button").click(function(){ | |
changeLanguage("tr"); | |
}); | |
//Eng button click | |
$("#eng_button").click(function(){ | |
changeLanguage("en"); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment