Created
May 30, 2018 13:21
-
-
Save coderkan/9af5519de899c67ba696bf113f80eb04 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 changeLanguage(lng){ | |
var resources = getLangResources()[lng]; | |
$("h1[name='translate']").each(function(i, elt){ | |
$(elt).text(resources[$(elt).attr("caption")]); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment