Sunday, 18 December 2011

Blink text with jQuery

Blink text with jQuery

1.Text Effects In jQuery.

2.If you want blinking text, use this tag.

3. To fade-in fade-out blinking of the text


<div id="msg"> </div>
<script language="javascript">
    function setFade() {
        $("#msg").fadeOut(1000, function () {
            $("#msg").fadeIn();
        });
        }
        setInterval("setFade();",100);
</script>

No comments:

Post a Comment