Created
August 9, 2013 14:11
-
-
Save jkempff/6193887 to your computer and use it in GitHub Desktop.
Brings back the good old HTML <blink> tag.
This file contains 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
/*global jQuery: false, setInterval: false*/ | |
(function ($) { | |
"use strict"; | |
setInterval(function () { | |
$('blink').each(function () { | |
$(this).css('visibility', ($(this).css('visibility') === 'hidden' ? 'visible' : 'hidden')); | |
}); | |
}, 250); | |
}(jQuery)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment