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];
- //$.getJSON('webDelegate.php?name='+ idChunk, function(data) {
- //$.getJSON('http://localhost/drupalTheme/translate/webDelegate.php?name='+idChunk, function(data) {
- $.getJSON('/drupalTheme/translate/webDelegate.php?name='+idChunk, function(data) {
- $.each(output, function(key, value) {
- $('#edit-targetLang-list').append($('<option>', { key : value }).text(value));});
- });
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement