tags:

views:

34

answers:

2

Whenevr i uncomment the second line then the tabs are not shown. inform is a simple div placeholder in body

$("#tabs").tabs();
//$(#inform).hide();//initialize itto hide-interferes with tab
+3  A: 

It might be because the " " are missing around #inform caussing a javascript error, this parse error will then prevent the first line from being run.

$("#inform").hide();

Will parse correctly.

CtlAltDel
A: 

Perhaps you mean $("#inform").hide().

chaos