Possible Duplicate:
jquery slideUp/slideDown functions not animating
I have multiple instances of slideup() and slidedown() in which they only show and hide but not with any animation. Here is a jsfiddle of a simple example of what I am experiencing.
Thanks
As was already mentioned, table elements aren’t supported efficiently enough by jQuery animations.
Based on your comment in another answer “This is someone elses form, I’m just added this feature to it. Either way I am not well versed in css layout myself so a table it is for now”, you can implement it with minimal markup change by splitting the table into two, encapsulating the
existingCustomertable in a div (due to it being “display:block” by default). Then animate on that div.See this jsFiddle .