Skip to content

Instantly share code, notes, and snippets.

@arthurpizza
Created June 30, 2015 22:17
Show Gist options
  • Save arthurpizza/83e0a95c6a4c3363a2c9 to your computer and use it in GitHub Desktop.
Save arthurpizza/83e0a95c6a4c3363a2c9 to your computer and use it in GitHub Desktop.
Include with jQuery
<p> This is my include file </p>
<html>
<head>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script>
$(function(){
$("#includedContent").load("add.html");
});
</script>
</head>
<body>
<div id="includedContent"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment