Skip to content

Instantly share code, notes, and snippets.

@edward
Created November 29, 2008 23:20
Show Gist options
  • Save edward/30345 to your computer and use it in GitHub Desktop.
Save edward/30345 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$('form.amazon').submit(function() {
$.getJSON("amazon/search",
{ terms: "ipod nano" },
function(data) {
$.each(data.products, function(i, product) {
$("<div/>").text(product).appendTo("form.amazon .results");
});
};
);
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment