Skip to content

Instantly share code, notes, and snippets.

@pafnuty
Created May 5, 2014 06:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pafnuty/5506bfc03b8f4f72f20f to your computer and use it in GitHub Desktop.
Save pafnuty/5506bfc03b8f4f72f20f to your computer and use it in GitHub Desktop.
<style>
.top-bigblock .block2,
.top-bigblock.notshow .block1 {
display: none;
}
.top-bigblock .block1,
.top-bigblock.notshow .block2 {
display: block;
}
</style>
<script>
$(document).on('load', function () {
var $bigBlock = $('.top-bigblock');
if (!$.cookie("show_bigblock")) {
$.cookie("show_bigblock", 'notshow', {
expires: 365,
path: '/'
});
}
});
</script>
<div class="top-bigblock">
<div class="block1"></div>
<div class="block2"></div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment