Created
November 28, 2012 21:07
-
-
Save ryanjm/4164497 to your computer and use it in GitHub Desktop.
This file contains 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
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
<title>Index</title> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> | |
<style type="text/css" media="all"> | |
.container { width: 960px; margin: 0 auto; } | |
.item { height: 30px; } | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="item one"> | |
Item 1 | |
</div> | |
<div class="item two"> | |
Item 4 | |
</div> | |
<div class="item three"> | |
<a href="./other-page.html">./other-page.html</a> | |
</div> | |
</div> | |
<script type="text/javascript" charset="utf-8"> | |
$(document).ready(function(){ | |
$(".two").click(function(){ | |
$(this).remove(); | |
$('html[manifest=saveappoffline.appcache]').attr('content', ''); | |
}); | |
}); | |
</script> | |
</body> | |
</html> |
This file contains 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
<!-- nothing needs to be here --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment