Top Menu
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>

About The Author

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

Close