Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(function() {
  2.     $('.translate').click(function() {
  3.         var lang = $(this).attr('id');
  4.         localStorage.setItem("language", lang);
  5.  
  6.         $('.lang').each(function(index, element) {
  7.             $(this).text(arrLang[localStorage.getItem("language")][$(this).attr('key')]);
  8.         });
  9.     });
  10.     if (localStorage.getItem("language") != "") {
  11.         $('.lang').each(function(index, element) {
  12.             $(this).text(arrLang[localStorage.getItem("language")][$(this).attr('key')]);
  13.         });
  14.     }
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement