일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- MSSQL보안
- sql업데이트
- sql랭킹
- inner join
- 정규식
- WML
- XML
- sql순위
- jdbc driver
- 자바기초
- update
- array
- asp함수
- 인젝션
- VARIABLE
- FileSystemObject
- VarType
- ERD
- join
- SPLIT
- tempDB
- javascript 한글입력체크
- 이미지가로길이
- 이미지세로길이
- 한글입력체크
- xmldom
- injection
- instr
- wap
- JavaScript
- Today
- Total
3초기억력
javascript - 트위터, 페이스북 링크 보내기 ( 미투데이, 싸이월드 공감, 다음 요즘 등) 본문
//트위터
function sendTwitter(sTitle,sUrl){
var shref ="http://twitter.com/home?status="+encodeURIComponent(sTitle)+" "+encodeURIComponent(sUrl);
var sWindow=window.open(shref);
if (sWindow){
sWindow.focus();
}
}
//미투데이
function sendM2Day(sTitle,sUrl){
var shref ="http://me2day.net/posts/new?new_post[body]"+encodeURIComponent(sTitle)+" "+encodeURIComponent(sUrl);
//++"&new_post[tags]"+encodeURIComponent(sTag);
var sWindow=window.open(shref);
if (sWindow){
sWindow.focus();
}
}
//페이스북
function sendFacebook(sTitle,sUrl){
var shref ="http://www.facebook.com/share.php?u="+encodeURIComponent(sUrl)+"&t="+encodeURIComponent(sTitle);
var sWindow=window.open(shref);
if (sWindow){
sWindow.focus();
}
}
//싸이월드 공감
function sendNateC(sTitle,sUrl,summary){
var shref ="http://csp.cyworld.com/bi/bi_recommend_pop_euc.php?url="+encodeURIComponent(sUrl)+"&corpid=seoulshinmun&summary="+encodeURIComponent(summary)+"&title="+encodeURIComponent(sTitle);
var sWindow=window.open(shref,'','menubar=no, toolbar=no, location=no, scrollbars=no');
if (sWindow){
sWindow.focus();
}
}
//요즘
function sendDaum(sTitle,sUrl){
var shref ="http://yozm.daum.net/api/popup/prePost?link="+encodeURIComponent(sUrl)+"&prefix="+encodeURIComponent(sTitle);
var sWindow=window.open(shref, 'yozmSend', 'width=466, height=356');
if (sWindow){
sWindow.focus();
}
}
'플밍_기타' 카테고리의 다른 글
html5 (0) | 2011.02.25 |
---|---|
2011 웹 트렌드 (0) | 2011.02.23 |
adobe gammar loader / gammar.cpl (0) | 2011.01.19 |
javascript - self.close() 크롬(chrome) 브라우저 사용법 (0) | 2010.12.07 |
내 컴퓨터 DNS 정보 확인 / 또는 삭제하는 CMS 명령어 (0) | 2010.09.13 |