Skip to content

Instantly share code, notes, and snippets.

@biagidp
Created March 24, 2011 17:33
Show Gist options
  • Save biagidp/885485 to your computer and use it in GitHub Desktop.
Save biagidp/885485 to your computer and use it in GitHub Desktop.
Jquery getJSON
$(document).ready(function(){
$('.init').click(function(event){
$.getJSON("http://localhost:37280/sites/1/encode?callback=?", { key: $("#target").attr('value') }, function(data){
alert(data);
});
event.preventDefault();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment