Skip to content

Instantly share code, notes, and snippets.

@ifnull
Last active December 11, 2015 23:49
Show Gist options
  • Save ifnull/4679602 to your computer and use it in GitHub Desktop.
Save ifnull/4679602 to your computer and use it in GitHub Desktop.
Drupal: Get English path from translated page.
var BLITZ_englishPath,
BLITZ_languageFormInputs = document.getElementById('lang-dropdown-form').firstChild.children;
for (var i = 0; i < BLITZ_languageFormInputs.length; i++) {
if(BLITZ_languageFormInputs[i].name === 'en'){
BLITZ_englishPath = BLITZ_languageFormInputs[i].value;
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment