我想知道是否有可能让我的 bPopup 显示在触发弹出窗口的每个链接下方?
我的js:
;(function($) {
$(function() {
$('.notesbutton').bind('click', function(e) {
e.preventDefault();
$('#notesdisplay').bPopup({
position: [1,1]
});
});
});
})(jQuery);
html:
<td align=\"center\"><a href=\"#\" class=\"notesbutton\"><b>Yes</b></a></td>
<div id=\"notesdisplay\">$notes</div>