$(function() { try{ school_popup_bind(); } catch(e){} }); function school_popup_bind() { $('.favorite_popup').CreateBubblePopup( {position: 'bottom', align: 'center', themeName: 'none', themePath: '/image/jquerybubblepopup-theme' } ); $('.favorite_popup').mouseover(function(){ var obj = $(this); var userId = obj.attr('userId'); $.get( '/do/school/interest/popup?userId='+userId, function(data) { obj.SetBubblePopupInnerHtml(data,false); } ); }); }