function sns_twitter(msg,url)
{
var twitterUrl = "http://twitter.com/home?status=" + encodeURIComponent(msg) + " " + encodeURIComponent(url);
var result = window.open(twitterUrl, 'twitter', '');
if (result)
{
result.focus();
}
}
function sns_me2day(msg,url,tag)
{
var wp = window.open("http://me2day.net/posts/new?new_post[body]=" + encodeURIComponent(msg) + " " + encodeURIComponent(url) + "&new_post[tags]=" + encodeURIComponent(tag), 'me2Day', '');
if ( wp )
{
wp.focus();
}
}
function sns_yozm(msg,url)
{
var yozmUrl = "http://yozm.daum.net/api/popup/prePost?sourceid=41&link=" + encodeURIComponent(url) + "&prefix=" + encodeURIComponent(msg);
var result = window.open(yozmUrl, 'yozm', '');
if (result)
{
result.focus();
}
}
function sns_facebook(msg,url) {
var wp = window.open("http://www.facebook.com/sharer.php?u=" + url + "&t=" + encodeURIComponent(msg), 'facebook', '');
if ( wp )
{
wp.focus();
}
}
'ETC > Script' 카테고리의 다른 글
모바일기기 접속확인방법 (0) | 2012.04.25 |
---|---|
jQuery.ajax (0) | 2012.04.25 |
Ajax로 다른 도메인의 자료 가져오기2 : JSONP를 사용하는 방법 (0) | 2012.04.25 |
Ajax로 다른 도메인의 자료 가져오기(Cross-Origin Resource Sharing) (0) | 2012.04.25 |
Left, Right (0) | 2012.04.25 |