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();
- });
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement