I want to change the content of a div 3 times, with a delay of 1 second between each change.
delay() doesn't work in this code :
$('#import-status-msg').html('Importing content ..').delay(1000).
html('Organizing content ..').delay(1000).
html('Eating burrito ..');
I get 'Eating burrito' directly. What's the shortest way to get this done?