codergautamyt

jQuery AJAX Starter Code

Jun 12th, 2020 (edited)
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //jQuery CDN(put in head tag of HTML):
  2. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
  3.  
  4. //jQuery AJAX(put inside body, inside <script>):
  5.  
  6.               $.ajax({
  7.         url: "",
  8.         method: "",
  9.         data: {
  10.         },
  11.         dataType: "",
  12.         success: function(data) {
  13.         }
  14.       });
  15.      
  16. //If you want any more code, pls comment or contact me on discord(Coder Gautam#8305)
Add Comment
Please, Sign In to add comment