私のWordpressプラグイン用のこの関数は、クラス「table_disp」でdivからコンテンツを出力するjQueryを使用しています。css スタイルを一緒に印刷するにはどうすればよいですか。
function pop_print(){
w=window.open(null, 'Print_Page', 'scrollbars=yes');
w.document.write(jQuery('.table_disp').html());
w.document.close();
w.print();
}
何か案が?