Skip to content

Instantly share code, notes, and snippets.

@keltanas
Last active December 22, 2015 01:58
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 keltanas/6399553 to your computer and use it in GitHub Desktop.
Save keltanas/6399553 to your computer and use it in GitHub Desktop.
Это вставить например, в "верхняя часть сайта"
<a href="#" id="blind">Версия</a>
<script>
$(function(){
$('#blind') // ссылается на <a href="#" id="blind"></a>
.click(function(){
$('body').toggleClass('blind');
return false;
});
});
</script>
в стилях ссылаемся на body как body.blind
body.blind {
font-size: 16pt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment