Skip to content

Instantly share code, notes, and snippets.

@dsebao
Created November 6, 2013 19:54
Show Gist options
  • Save dsebao/7343042 to your computer and use it in GitHub Desktop.
Save dsebao/7343042 to your computer and use it in GitHub Desktop.
Use includes in HTML!
<div class="js-include" title="nav.html"></div>
$(".js-include").each(function(){
var inc=$(this);
$.get(inc.attr("title"), function(data){
inc.replaceWith(data);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment