Created
July 24, 2025 22:26
-
-
Save c0des1ayr/35c4cac607133ecd8f6261c0517dc467 to your computer and use it in GitHub Desktop.
jquery.blink.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * 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