Click here to Skip to main content
15,891,828 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,
I have used blink effect in jquery. It works fine in google chrome browser, but doesnot work on IE8. Here is my code:

C#
$(function() {
    blinkeffect('#txthelpline');
})

$('#txthelpline').fadeIn(2000, function() {
    this.style.removeAttribute('filter');
});
    function blinkeffect(selector) {
        $(selector).fadeOut('slow', function() {
            $(this).fadeIn('slow', function() {
                blinkeffect(this);
            });
        });
    }
Posted

1 solution

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900