// 起動時の処理 $(document).ready(function(){ // colorboxの設定 $(".group1").colorbox({rel:'group1', transition:"none", width:"75%", height:"75%"}); }); $(function(){ /* $("#btSearch").click(function(){ }); */ // ■株価材料ウィンドウの表示 $(".btSource").click(function(){ $.colorbox({ inline:true, href:"#" + $(this).data('display'), width:"800px" }); }); // ■チャートの表示 $(".chartImage").click(function(){ var code = $(this).data('code'); $.colorbox({ href:"/ranking/?mode=ajax&job=doGetChartHtml&code=" + code, width:"1035px", height:"500px" }); }); // ■datepicker $.datepicker.formatDate( "yy-mm-dd", new Date( 2007, 1 - 1, 26 ) ); });