サイトに 1 つのポップアップを含めることができますが、2 つ目を追加したい場合、これは正しく機能しません。
それぞれに個別のポップアップがある 2 つのボタンを探しています。
Jsfiddleを確認し、ここでプラグインの公式サイトを確認してください
これの何が問題なのですか?
Jクエリ
(function ($) {
$(function () {
$('#my-button,#my-button2').bind('click', function (e) {
e.preventDefault();
$('#element_to_pop_up,#element_to_pop_up2').bPopup();
});
});
})(jQuery);
CSS
#element_to_pop_up {
background-color:#fff;
border-radius:15px;
color:#000;
display:none;
padding:20px;
min-width:400px;
min-height: 180px;
}
.b-close {
cursor:pointer;
position:absolute;
right:10px;
top:5px;
};
#element_to_pop_up2 {
background-color: black;
border-radius:15px;
color:#000;
display:none;
padding:20px;
min-width:400px;
min-height: 180px;
}
HTML
<button id="my-button">POP IT UP</button>
<div id="element_to_pop_up"> <a class="b-close">x<a/>
Content of popup
</div>
<button id="my-button">POP IT UP</button>
<div id="element_to_pop_up2"> <a class="b-close">x<a/>
Content of popup
</div>