[jQuery] fadIn not working in chain?
Hi,
i have these lines of code:
$('#save').click(function(event){
$("table tr#t2").after("<tr style="ackground-color:yellow;">Insert
this row</tr>").fadeIn("slow");
});
If the save buttons gets clicked, i append a new row. This works fine.
But when additionally want to fadeIn, it didnt work. Does the fadeIn
Effect not work in chain with .after'?
Thanks
Yavuz