Skip to content

Instantly share code, notes, and snippets.

@moxie
Created August 24, 2011 19:24
Show Gist options
  • Save moxie/1168946 to your computer and use it in GitHub Desktop.
Save moxie/1168946 to your computer and use it in GitHub Desktop.
convert: function(amount, from, to) {
$.get("/currency_conversion/" + amount + "/from/" + from + "/to/" + to, function(response) {
parseFloat(response);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment