Skip to content

Instantly share code, notes, and snippets.

@myinitialsaretk
Last active December 29, 2015 10:49
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 myinitialsaretk/7660024 to your computer and use it in GitHub Desktop.
Save myinitialsaretk/7660024 to your computer and use it in GitHub Desktop.
Reminder to self - this should be in jQuery core.
setInterval(function(){
$('blink').each( function(){
$(this).css('visibility' , $(this).css('visibility') === 'hidden' ? '' : 'hidden')
} ); }
, 250
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment