Is there a way to initially conceal a table on page load only to reveal it with a sliding animation when a specific link is clicked? I have attempted using the following code to hide the table:
$('.table_div').hide();
I have enclosed the table within a div and then proceeded to hide that particular div.
My issue lies in the fact that upon page load, the table briefly appears before being hidden. Is there any way to prevent this initial display? Thank you.