I am trying to fade out the existing text of a dialog box, and then fade in an error image simultaneously.
How might i do this? Right now I have it (somewhat) working but a few things wrong with it.
- it fades out instantly
- its not simultaneous (i want 1 to fade in while the other fades out).
Note: I cant just fade in a div because throughout the whole program #dialog is being written to, so if I stored the div.error in there it would just be overwritten, so i need to do it this way.
what i have so far
$.ajax({
type: "POST",
url: "/checkstatus/" + id,
dataType: "html",
error: function(data){
$("#dialog").fadeOut();
$("#dialog").hide().html("<img src='/img/deleted.jpg' alt='deleted'>")
$("#dialog").fadeIn();
}
});