Skip to content

Instantly share code, notes, and snippets.

@gbrl
Created April 11, 2018 17:10
Show Gist options
  • Save gbrl/234e81a1fb25a41248184bfc546102af to your computer and use it in GitHub Desktop.
Save gbrl/234e81a1fb25a41248184bfc546102af to your computer and use it in GitHub Desktop.
$(document).ready(function(){
console.log("Document is ready.");
$.ajax({
type:"GET",
url:"https://grantstraining.arts.on.ca/ex/ex_openreport.jsp?xml=1&export=1&key=&token=%40GwoGSx4eeFtZRRVfSRxSS1NUbVF8EnVo",
dataType:"xml",
success:function(xml)
{
console.log("Success");
$("#outputdiv").html(xml);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment