Implementing the blink tag using jQuery

Do you miss the good old days of of the web where you had the <blink> tag, oh it was wonderful.
Well today I decided that I wanted to bring it back, damnit I want my text to blink!
Thanks to the wonders of jQuery this is a snap to build, in fact …


This content originally appeared on Posts on LINQ to Fail and was authored by Posts on LINQ to Fail

Do you miss the good old days of of the web where you had the <blink> tag, oh it was wonderful. Well today I decided that I wanted to bring it back, damnit I want my text to blink! Thanks to the wonders of jQuery this is a snap to build, in fact here it is: (function($) { $.fn.blinky = function() { var that = this; function go() { $(that).fadeOut().fadeIn(); setTimeout(go, 1e3); }; go(); }; })(jQuery); Now you can use it just like this:


This content originally appeared on Posts on LINQ to Fail and was authored by Posts on LINQ to Fail


Print Share Comment Cite Upload Translate Updates
APA

Posts on LINQ to Fail | Sciencx (2011-02-08T00:00:00+00:00) Implementing the blink tag using jQuery. Retrieved from https://www.scien.cx/2011/02/08/implementing-the-blink-tag-using-jquery/

MLA
" » Implementing the blink tag using jQuery." Posts on LINQ to Fail | Sciencx - Tuesday February 8, 2011, https://www.scien.cx/2011/02/08/implementing-the-blink-tag-using-jquery/
HARVARD
Posts on LINQ to Fail | Sciencx Tuesday February 8, 2011 » Implementing the blink tag using jQuery., viewed ,<https://www.scien.cx/2011/02/08/implementing-the-blink-tag-using-jquery/>
VANCOUVER
Posts on LINQ to Fail | Sciencx - » Implementing the blink tag using jQuery. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2011/02/08/implementing-the-blink-tag-using-jquery/
CHICAGO
" » Implementing the blink tag using jQuery." Posts on LINQ to Fail | Sciencx - Accessed . https://www.scien.cx/2011/02/08/implementing-the-blink-tag-using-jquery/
IEEE
" » Implementing the blink tag using jQuery." Posts on LINQ to Fail | Sciencx [Online]. Available: https://www.scien.cx/2011/02/08/implementing-the-blink-tag-using-jquery/. [Accessed: ]
rf:citation
» Implementing the blink tag using jQuery | Posts on LINQ to Fail | Sciencx | https://www.scien.cx/2011/02/08/implementing-the-blink-tag-using-jquery/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.