- 정보공유
[API] magnificPopup 예제
$('.send-sms-win').magnificPopup({
type: 'ajax',
showCloseBtn:true,
closeOnBgClick: false,
preloader: true,
callbacks: {
elementParse: function(item){
var dataString = $('#fmemberlist').serialize();
this.st.ajax.settings.data = dataString;
},
open: function() {
if (!is_checked("chk[]")) {
alert("발송 하실 항목을 하나 이상 선택하세요.");
this.close();
}
},
},
ajax: {
settings: {
cache:false,
url: './win_sms.php',
type: 'post',
}
},
});