-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathframework.html
More file actions
32 lines (25 loc) · 861 Bytes
/
framework.html
File metadata and controls
32 lines (25 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<div class="bgcontainer">
<img class="bg" src="Skikaart.jpg" />
</div>
<div class="content">
<img class="logo" src="logo.png"/>
<img class="sidebar" src="Sidebar.png"/>
<div class="menu">
<a class='nav' href="home_content.html">Home</a>
<a class='nav' href="info_content.html">Info</a>
<a class='nav' href="contact_content.html">Contact</a>
<a class='nav' href="inschrijven_content.html">Inschrijven</a>
<a class='nav' href="PARTY_CONTENT.HTML">Sfeer</a>
</div>
<script type='text/javascript'>
$(function(){
var target = $('.pagecontent')
$('a.nav').live('click', function(e){
e.preventDefault()
target.load($(this).prop('href'));
});
});
</script>
<div class="pagecontent">
</div>
</div>