Created
November 5, 2016 17:52
-
-
Save hasibkamal/0f1fda66348c414867885291d2dc4625 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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