purazumakoiの[はてなブログ]

技術メモから最近はライフログも増えてきてます。

2014-12-17から1日間の記事一覧

javascriptでブラウザの印刷イベントの実行前、実行後を取る

IEのみバージョン5以降 window.onbeforeprint = function() { console.log('This will be called before the user prints.'); }; window.onafterprint = function() { console.log('This will be called after the user prints'); }; Firefox (jquery読み込…