[펌글] jQuery-UI Dialog의 타이틀바(titlebar) 제거하기
– 출처 : http://www.ke-cai.net/2009/05/remove-jquery-ui-dialogs-title-bar.html – 1. Hide it via it’s default CSS: .ui-dialog-titlebar { display: none; }; * 주의 : This will change all dialog’s apperance. 2. Or add another CSS class, insetad of change them all. .hide-title-bar.ui-dialog-titlebar { display: none; } $(“#dialog”).dialog({ dialogClass: “hide-title-bar” }); 3. Remove title bar element… Read More »