I have an issue with doing two .html()'s in the same function cause the first one is getting overrun by the second. Any thoughts? This function is getting called when another action is taken, it is working fine, but when I put in the delay and the 2nd html() it doesn't work. Thanks.
function confirmNote() {
$('#noteConfirm').html('Note Sent').delay(1000).html('Leave a Note');
}