Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function populateTargetlangs() {
- $("#edit-folks-list").change(function() {
- var targetLangIndex = $(this).find(":selected").text();
- var chunks = targetLangIndex.split("_");
- var idChunk = chunks[1];
- alert("hello worlds "+ idChunk);
- $.post('webDelegate.php',{name:idChunk},
- function (output){
- $("#edit-targetLang-list").html(output).show();
- });
- });
- });
- /*$(document).ready(function populateTargetlangs() {
- $("#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 (output){
- $("#edit-targetLang-list").html(output).show();
- });
- });
- });
- */
- /*$(document).ready(function populateTargetlangs() {
- $("#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 (output){
- $.each(output, function(key, value) {
- $('#edit-targetLang-list').append($('<option>', { value : key }).text(value));});
- });
- });
- });
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement