Skip to content

Instantly share code, notes, and snippets.

@mclaughj
Last active September 23, 2015 15:58
Show Gist options
  • Save mclaughj/580133 to your computer and use it in GitHub Desktop.
Save mclaughj/580133 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
$(document).ready(function(){
$('.gistinclude').each(function(){
var gistLocation = $(this);
$.getJSON('http://gist.github.com/'+$(this).attr('data-gistid')+'.json?callback=?', function(data){
gistLocation.replaceWith(data.div);
});
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment