레이어 영역 프린트

var layerPrint = function layerPrint() {
    var printCont = $('.ly-wrap.active>div').clone(); // 활성화된 레이어 영역 복제

    $('body').append('<div class="print-div">'); // 프린트 영역 생성
    $('.print-div').append(printCont); // 프린트 영역에 레이어 영역 복사
    $('.wrap, .ly-wrap.active').hide();
    window.print();
    $('.print-div').remove(); // 사용이 끝난 영역 삭제
    $('.wrap, .ly-wrap.active').removeAttr('style');
}
jinnnh's profile image

jinnnh

2018-06-28 14:00

Read more posts by this author