How can I blink the Message?
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Hie... I got a Message.InnerHtml = "How are you?" I want to make this blink 5 times. Is there anyway to do that? Regards, Aaron
hi, Check this below code once...! and Tell me......! function blinkIt() { if (!document.all) return; else { for(i=0;i<document.all.tags('blink').length;i++){ s=document.all.tags('blink')[i]; s.style.visibility=(s.style.visibility=='visible') ?'hidden':'visible'; } } } Am i blinking ? Regards, Sukesh.g