Hi,
I have a table and it contains an asp .net Literal control. The literal control has some dynamic contents in it.
I was trying to hide this whole table on user action; e.g. when an icon is clicked. So I tried like:
- img_crevents.click(function(){
- if (tab_crevents.is(':hidden'))
- {
- .......
- tab_crevents.fadeIn(delay_seconds);
- tabBottomContents.hide();
- }
- })
But I get 'Object doesn't support this property' error.
How can I achieve this?
Thanks.