Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function() {
- $("#edit-folks-list").change(function() {
- var targetLangIndex = $(this).find(":selected").text();
- var chunks = targetLangIndex.split("_");
- var idChunk = chunks[1];
- $('#edit-targetLang-list').empty();
- $.getJSON('/drupalTheme/translate/webDelegate.php?name='+idChunk, function(data) {
- $.each(data, function(key, value) {
- $('#edit-targetLang-list').append($('<option>', { key : value }).text(value));
- });
- });
- });
- });
- $(document).ready(function () {
- $("#formModifications-translate-bulk").submit(function() {
- $(":submit", this).attr("disabled", "disabled");
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement