Guest User

Untitled

a guest
Feb 11th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. $('#select_lang_file').change(function() {
  2. $("#select_lang_file option:selected").each(function ()
  3. if ($(this).val()!='') {
  4. var values='act_type=ajax';
  5. values+='&act=select_lang_files';
  6. values+='&page='+ID;
  7.  
  8. $.ajax({
  9. type: "POST",
  10. url: "../../translations" + $(this).val(),
  11. data: values,
  12. cache: false,
  13. success: function(html){
  14.  
  15. }
  16. });
  17. }
  18. });
Add Comment
Please, Sign In to add comment