Skip to content

Instantly share code, notes, and snippets.

@c0des1ayr
Created July 24, 2025 22:26
Show Gist options
  • Select an option

  • Save c0des1ayr/35c4cac607133ecd8f6261c0517dc467 to your computer and use it in GitHub Desktop.

Select an option

Save c0des1ayr/35c4cac607133ecd8f6261c0517dc467 to your computer and use it in GitHub Desktop.
jquery.blink.js
/**
* url https://en.wikipedia.org/wiki/Blink_element
**/
setInterval(function(){
$('blink').each(function() {
$(this).toggle();
});
}, 250);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment