fade in/out dynamic messges
hi,
I am trying to fadeIn error message received from the server.
Here is the code:
$("#" + RowID + "> TD:nth-child(4)").append("<err class='error'>" + err.Message + "</err>").fadeIn(1000);
But the fadeIn() does not seem to work, it shows the message straight away .. off course I am missing something here, probably the append() and fadeIn() do not go hand in hand.
Thanks in advance for the help.