Created
February 1, 2017 12:47
-
-
Save NickDeckerDevs/df818b6f9b7dc6ebb675fe8119d1e2c9 to your computer and use it in GitHub Desktop.
Very basic ajax example
This file contains 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
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