Skip to content

Instantly share code, notes, and snippets.

@bluewhalelabs
Created September 20, 2012 03:24
Show Gist options
  • Select an option

  • Save bluewhalelabs/3753804 to your computer and use it in GitHub Desktop.

Select an option

Save bluewhalelabs/3753804 to your computer and use it in GitHub Desktop.
Chute Photo Shortener JS
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
$(document).ready(function() {
var shortcut = document.location.hash.replace('#','');
if (shortcut.length) {
$.getJSON("http://api.getchute.com/v1/assets/" + shortcut + "?callback=?", function(data){
$('body').html('<img src=' + data.data.url + ' />')
});
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment