I'm getting a 404 file not found when I try to include an html file into another html using jQuery. Here's my code inside my index.html
<script>
$(function(){
$("#portfolio").load("list.html");
});
</script>
The way my file directory is setup is that both index.html and list.html are within a views folder and being served via a node.js server.
"/list/list.html"index.htmlis in that directory?