Skip to content

Instantly share code, notes, and snippets.

@hasibkamal
Created November 5, 2016 17:52
Show Gist options
  • Save hasibkamal/0f1fda66348c414867885291d2dc4625 to your computer and use it in GitHub Desktop.
Save hasibkamal/0f1fda66348c414867885291d2dc4625 to your computer and use it in GitHub Desktop.
<script>
$(document).ready(function(){
$.ajax({
type: "GET",
url: "<URL HERE>",
data: {name:value},
success: function (result) {
// do something on success
},
error:function(){
// do something on error
}
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment