Advertisement
Guest User

Untitled

a guest
Sep 16th, 2022
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | Source Code | 0 0
  1. $(document).ready(function(){
  2. $("#convert").on("click", function() {
  3. var lang_one = $("#lang_one").val();
  4. var lang_two = $("#lang_two").val();
  5. var text = $("#text").val();
  6.  
  7. $.ajax({
  8. url: "process.php",
  9. method: "post",
  10. data: {lang_one: lang_one, lang_two:lang_two, text: text},
  11. success: function(status){
  12. console.log(status);
  13. },
  14. });
  15. });
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement