- 정보공유
[JQUERY] Magnific Popup 예제
- 작성일
- 17-05-19 18:19
- 조회수
- 36,559 건
- 댓글
- 0 건
http://dimsemenov.com/plugins/magnific-popup/documentation.html44491회 연결
var click_index = 0;
$('.test-popup-link').magnificPopup({
type: 'ajax', // inline
overflowY: 'scroll',
callbacks: {
elementParse: function(item) {
click_index = item.index; // 클릭한 element index 값
},
ajaxContentAdded: function() {
$('#input-box').focus(); // ajax 가 로딩되고 난후 포커스처리.
}
}
});