Created
November 6, 2013 19:54
-
-
Save dsebao/7343042 to your computer and use it in GitHub Desktop.
Use includes in HTML!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="js-include" title="nav.html"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(".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