I want to create a delay between these two messages:
$(\'#submit-account\').html(animation + \'Submitting Data\')
$(\'#submit-account\').html(animation + \'Valid
make sure the #submit-account is hidden already.
instead of your code you can try this
$('#submit-account').html(ani + "Wait").fadeIn(5000);
$('#submit-account').html(ani + "Done").fadeIn(5000);
This will control the speed of the fadein effect.
or if you want the div to be fadein after some time, you can use the setTimeOut()
function.
Hope this will help you