Skip to content

Instantly share code, notes, and snippets.

@girvydas
Created February 8, 2014 16:07
Show Gist options
  • Save girvydas/5d7109a292fb08fde2e4 to your computer and use it in GitHub Desktop.
Save girvydas/5d7109a292fb08fde2e4 to your computer and use it in GitHub Desktop.
LT to EN jQuery
var from = "ąčęėįšųūž";
var to = "aceeisuuz";
for (var i=0, l=from.length ; i<l ; i++) {
str = str.replace(new RegExp(from.charAt(i), 'g'), to.charAt(i));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment