function clipboard(str){ 
    $('#clip_target').val(str); 
    $('#clip_target').select(); 
    try { 
        var successful = document.execCommand('copy');  
        alert('클립보드에 주소가 복사되었습니다. Ctrl + V 로 붙여넣기 하세요.'); 
    } catch (err) { 
        alert('이 브라우저는 지원하지 않습니다.'); 
    }
}

+ Recent posts