<script language="javascript">
function sns_share() {
var ranNum = Math.floor(Math.random()*10); // 퍼가기 캐싱 방지
var ShareUrl; // 공유 주소
var DocTitle; // 공유 제목
ShareUrl = location.href; //현재 페이지 또는 퍼갈 주소를 설정
DocTitle = "twitter 퍼가기 테스트 입니다.";
newwindow = window.open('http://twitter.com/share?url='+encodeURIComponent(SHARE_URL)+'&text='+encodeURIComponent(DocTitle)+"&nocache="+ranNum,'sharer', 'toolbar=0, status=0, width=626, height=436');
if (window.focus) {newwindow.focus();}
}
</script>
function sns_share() {
var ranNum = Math.floor(Math.random()*10); // 퍼가기 캐싱 방지
var ShareUrl; // 공유 주소
var DocTitle; // 공유 제목
ShareUrl = location.href; //현재 페이지 또는 퍼갈 주소를 설정
DocTitle = "twitter 퍼가기 테스트 입니다.";
newwindow = window.open('http://twitter.com/share?url='+encodeURIComponent(SHARE_URL)+'&text='+encodeURIComponent(DocTitle)+"&nocache="+ranNum,'sharer', 'toolbar=0, status=0, width=626, height=436');
if (window.focus) {newwindow.focus();}
}
</script>
'dev > SNS Dev' 카테고리의 다른 글
SNS 퍼가기 모음. (0) | 2013.08.01 |
---|---|
The Open Graph protocol - Official Site. (0) | 2012.05.03 |
끝이 보이지 않는 Share.. (0) | 2012.04.25 |
트위터 위젯 설정 (0) | 2012.02.21 |