-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
33 lines (33 loc) · 1004 Bytes
/
example.html
File metadata and controls
33 lines (33 loc) · 1004 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
33
<!doctype html>
<html>
<head>
<title>rescache example</title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="jquery.rescache.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<span class="image image1" res-cache='true'></span>
<span class="image image2" res-cache='true'></span>
<span class="image image3" res-cache='true'></span>
</div>
<div class="row">
<span class="image image4" res-cache='true'></span>
<span class="image image5" res-cache='true'></span>
<span class="image image6" res-cache='true'></span>
</div>
<div class="row">
<span class="image image7" res-cache='true'></span>
<span class="image image8" res-cache='true'></span>
<span class="image image9" res-cache='true'></span>
</div>
</div>
<script type="text/javascript">
$(function(){
$.rescache.prefetchAll();
});
</script>
</body>
</html>