Skip to content

Instantly share code, notes, and snippets.

@NickDeckerDevs
Created February 1, 2017 12:47
Show Gist options
  • Save NickDeckerDevs/df818b6f9b7dc6ebb675fe8119d1e2c9 to your computer and use it in GitHub Desktop.
Save NickDeckerDevs/df818b6f9b7dc6ebb675fe8119d1e2c9 to your computer and use it in GitHub Desktop.
Very basic ajax example
var url = 'http://';
$.ajax({
type : 'GET',
url : url,
dataType : 'html',
cache: 'false',
success : function(data){
/* This target is where the data you pulled in will be placed. You can parse teh data here to only take a section of it (it will be pulling in the entire page) */
$('#test-div').html(data);
},
error : function(XMLHttpRequest, textStatus, errorThrown) {
$('#test-div').html('There was an error, please check console');
console.log(errorThrown);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment