$(document).ready(function(){ myprj.events(); }); $(window).load(function() { myprj.models.onload(); }); myprj = { _map : {}, _mouse : {}, models : { _layer : {}, _marker_center : {}, onload : function () { $(parent.$('#CommentList')).height($('#SpotComment').height() + 100); $('.link').click(function() { var target = $('a[name="comen"]').offset(); if (target) { parent.window.scrollTo(0,target.top); return false; } }); }, delCom : function (Id) { if (confirm('コメントを削除します。よろしいでしょうか?')) { $('#com_id').val(Id); $('#frmDelCom').submit(); } } }, // Model End events : function () { $('.LinkDelCom').click(function() { myprj.models.delCom($(this).attr('name')); }); } // Event End } // All End