Search code examples
javascriptjqueryblink

Delay is not working


Why this is not working

$('#upload-title').css({ background: '#ffffff' }).delay(800).css({ background: '#00FF72' });

I want that my #upload-title. Is white for 0.5 sec. Thanks for help


Solution

  • You'll need to use a timeout, delay is meant for use with animations:

    $('#upload-title').css({
        background : '#eeeeff'
    });
    setTimeout(function() {
        $('#upload-title').css({
            background : '#00FF72'
        });
    }, 800);