Skip to content

Instantly share code, notes, and snippets.

View the-valan's full-sized avatar

Valentyn Anishchenko the-valan

View GitHub Profile

Keybase proof

I hereby claim:

  • I am the-valan on github.
  • I am opppblock (https://keybase.io/opppblock) on keybase.
  • I have a public key ASDx55Aqsm0j3nbT3SlndAZxalH2d8DZ7vjcpiktZKxsKwo

To claim this, I am signing this object:

@the-valan
the-valan / script.js
Last active August 29, 2015 14:27
Button UP
$(function() {
$( window ).scroll(function() {
if($( this ).scrollTop() != 0) {
$( '#toTop' ).fadeIn();
} else {
$( '#toTop' ).fadeOut();
}
});