Skip to content

Instantly share code, notes, and snippets.

@edipofederle
Created October 19, 2012 23:11
Show Gist options
  • Select an option

  • Save edipofederle/3921225 to your computer and use it in GitHub Desktop.

Select an option

Save edipofederle/3921225 to your computer and use it in GitHub Desktop.
function sendRequest() {
var requestID = "666";
Ext.Ajax.request({
url:'/url'
success: function(response) {
alert("Request " + requestID + " returned");
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment