Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (function($){
- $(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();
- var currUser = $('#hidden_id').val();
- $('#edit-webdelegate-list').empty();
- $.getJSON('/drupal7cms/translate/webDelegate.php?name='+idChunk+'&curentUser='+currUser, function(data) {
- $.each(data, function(key, value) {
- $('#edit-webdelegate-list').append($('<option>', { key : value }).text(value));
- });
- });
- });
- });
- })(jQuery);
- (function($){
- $(document).ready(function () {
- $("#formModifications-translate-bulk").submit(function() {
- $(":submit", this).attr("disabled", "disabled");
- });
- });
- })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement