Skip to content

Instantly share code, notes, and snippets.

@lamngockhuong
Last active July 28, 2019 16:34
Show Gist options
  • Save lamngockhuong/4ba6abfb7ddde23abb79425ae630a3c1 to your computer and use it in GitHub Desktop.
Save lamngockhuong/4ba6abfb7ddde23abb79425ae630a3c1 to your computer and use it in GitHub Desktop.
[Ajax JQuery] #ajax #js
<script>		
  $.ajax({
    url: 'URL',
    type: '',
    cache: false,
    data: {
    //Dữ liệu gửi đi
    },
    success: function(data){
    // Xử lý thành công
    },
    error: function (){
    // Xử lý nếu có lỗi
    }
  });
</script>


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment