SyntaxFix
Write A Post
Hire A Developer
Questions
Some of these answers are quite complicated, this is a bit easier:
$.fn.blink = function(time) { var time = typeof time == 'undefined' ? 200 : time; this.hide(0).delay(time).show(0); } $('#msg').blink();