Skip to content

Instantly share code, notes, and snippets.

@dhruvbaldawa
Created June 25, 2012 06:37
Show Gist options
  • Save dhruvbaldawa/2987013 to your computer and use it in GitHub Desktop.
Save dhruvbaldawa/2987013 to your computer and use it in GitHub Desktop.
ajax
<HTML>
<HEAD>
<TITLE>TEST</TITLE>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
function run() {
link = 'http://ajay-pc/nisarg/my_ajay/node/1.json';
$.ajax({
url: link,
dataType: 'json',
success: function(data) {
document.write(data.id);
}
});
}
window.onload = run;
</script>
<BODY>
</BODY>
</HEAD>
</HTML>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment