Won't fade out?

Won't fade out?

I have created a javascript function to make a message fade out in my clients panel.

Here is my function:

  1. function deletemsg(id)
  2. {
  3. $.ajax({ url: "ajax_deletemsg.php?id=" + id, context: document.body, success: function(){
  4. $('#msg-' + id).fadeOut(1000, function() {
  5. // Animation complete.
  6. alert("faded");
  7. $('#msg-' + id).remove();
  8. });
  9.   }});
  10. }
It shows the 'faded' alert message but it doesn't fade the area? How can I fix this?