Cara Mudah Memasang Popup Facebook Like di Blogspot.

Cara mudah memasang pop up like page facebook untuk blogger pemula
popup like facebook
Sebetulnya banyak sekali tulisan mengenai ini yang sudah beredar di jagat online. tapi toh tak ada salah-nya juga saya tulis diblog ini, hitung-hitung sambil menuhin artikel. biar nampak penuh. heheheehee...
Upaya tiap-tiap bloger untuk memasang pernak-pernik seperti ini yaitu dengan tujuan agar antara blog dan page facebook bisa saling bersinergi. karena secara tidak langsung dunia blogging untuk saat ini tidak bisa lepas dari media sosial seperti facebook dan yang lain. karena tehnik ini merupakan bagian daripada SEO untuk menarik visitor baru.
karena bisa jadi seseorang bisa mengetahui blog kita melalui page facebook yang kita buat, dan bisa juga seseorang akan me-like page facebook kita setelah mengetahui dari blog/website kita. jadi hal-hal semacam ini memungkinkan sekali untuk menjaring visitor baru untuk masing-masing media yang sudah kita buat tadi.

Metode pemasangan popup facebook like di blogspot ini cukup mudah untuk dipraktekkan bagi blogger cupu seperti saya, karena langkahnya hanya memasang code-code tersebut kedalam widget HTML/JavaScript.
Jika anda berminat menggunakan metode pemasangan Popup Facebook Like.. anda bisa menggunakan koleksi code-code-nya dibawah ini yang saya dapat dari berbagai sumber tentunya.

Style 1


<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js' type='text/javascript'></script>
<style>
#fbox-background {
    display: none;
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

#fbox-close {
    width: 100%;
    height: 100%;
}

#fbox-display {
    background: #eaeaea;
    border: 5px solid #828282;
    width: 340px;
    height: 230px;
    position: absolute;
    top: 32%;
    left: 37%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#fbox-button {
    float: right;
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 0px;
}

#fbox-button:before {
    content: "CLOSE";
    padding: 5px 8px;
    background: #828282;
    color: #eaeaea;
    font-weight: bold;
    font-size: 10px;
    font-family: Tahoma;
}

#fbox-link,#fbox-link a.visited,#fbox-link a,#fbox-link a:hover {
   JSor: #aaaaaa;
    font-size: 9px;
    text-decoration: none;
    text-align: center;
    padding: 5px;
}
</style>
<script type='text/javascript'>
//<![CDATA[
jQuery.cookie = function (key, value, options) {
// key and at least value given, set cookie...
if (arguments.length > 1 && String(value) !== "[object Object]") {
options = jQuery.extend({}, options);
if (value === null || value === undefined) {
options.expires = -1;
}
if (typeof options.expires === 'number') {
var days = options.expires, t = options.expires = new Date();
t.setDate(t.getDate() + days);
}
value = String(value);
return (document.cookie = [
encodeURIComponent(key), '=',
options.raw ? value : encodeURIComponent(value),
options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
options.path ? '; path=' + options.path : '',
options.domain ? '; domain=' + options.domain : '',
options.secure ? '; secure' : ''
].join(''));
}
// key and possibly options given, get cookie...
options = value || {};
var result, decode = options.raw ? function (s) { return s; } : decodeURIComponent;
return (result = new RegExp('(?:^|; )' + encodeURIComponent(key) +  '=([^;]*)').exec(document.cookie)) ? decode(result[1]) : null;
};
//]]>
</script>
<script type='text/javascript'>
jQuery(document).ready(function($){
if($.cookie('popup_facebook_box') != 'yes'){
$('#fbox-background').delay(3000).fadeIn('medium');
$('#fbox-button, #fbox-close').click(function(){
$('#fbox-background').stop().fadeOut('medium');
});
}
$.cookie('popup_facebook_box', 'yes', { path: '/', expires: 7 });
});
</script>
<div id='fbox-background'>
<div id='fbox-close'>
</div>
<div id='fbox-display'>
<div id='fbox-button'>
</div>
<iframe allowtransparency='true' frameborder='0' scrolling='no' src='//www.facebook.com/plugins/likebox.php?
href=https://www.facebook.com/pages/Koentji/288621014595208&width=402&height=255&colorscheme=light&show_faces=true&show_border=false&stream=false&header=false'
style='border: none; overflow: hidden; background: #fff; width: 339px; height: 200px;'></iframe>
<div id="fbox-link">Powered by <a style="padding-left: 0px;"  href="http://helplogger.blogspot.com"  rel="nofollow">Helplogger</a></div>
</div>
</div>

  • Ganti bagian delay(3000) dengan selera anda, delay(3000) berarti popup akan muncul dalam waktu 3 detik setelah web page selesai loading.
  • Hapus bagian $.cookie('popup_facebook_box', 'yes', { path: '/', expires: 7 }); jika ingin popup selalu muncul ketika bepindah halaman.
  • Ganti  https://www.facebook.com/pages/Koentji/288621014595208 sesuai dengan alamat page facebook anda

Style 2

<!-- facebook like box popup-->
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js'></script>
<script src="http://exeideasinternational.googlecode.com/files/jquery.colorbox-min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function(){
if (document.cookie.indexOf('visited=true') == -1)
{
var fifteenDays = 1000*60*60*24*30;
var expires = new Date((new Date()).valueOf() + fifteenDays);
document.cookie = "visited=true;expires=" + expires.toUTCString();
$.colorbox({width:"400px", inline:true, href:"#exestylepopups"});
}
});
</script>
<style type="text/css">
/*
ColorBox v1.3.16
(Copyright (c) 2011 Jack Moore - jack@colorpowered.com)
*/
#colorbox,#cboxOverlay,#cboxWrapper{position:absolute;top:0;left:0;z-index:9999;overflow:hidden}#cboxOverlay{position:fixed;width:100%;height:100%}#cboxMiddleLeft,#cboxBottomLeft{clear:left}#cboxContent{position:relative}#cboxLoadedContent{overflow:auto}#cboxTitle{margin:0}#cboxLoadingOverlay,#cboxLoadingGraphic{position:absolute;top:0;left:0;width:100%}#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{cursor:pointer}.cboxPhoto{float:left;margin:auto;border:0;display:block}.cboxIframe{width:100%;height:100%;display:block;border:0}#cboxOverlay{background:#000;opacity:0.5 !important}#colorbox{box-shadow:0 0 15px rgba(0,0,0,0.4);-moz-box-shadow:0 0 15px rgba(0,0,0,0.4);-webkit-box-shadow:0 0 15px rgba(0,0,0,0.4)}#cboxTopLeft{width:14px;height:14px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5HDkXifAxmWEGuY6IwDT5cR0JE86-Bdm6VQZITI1VGmEIWieilOfmNtF6p3soK64Byb1RO-cfGQpavab2TPlkD-vCoMRM2fZHQwuc4vHBfi9kNnP9u8e5tjA0OQZuSPI0HXJ5ko8FJRg/s1600/controls.png) no-repeat 0 0}#cboxTopCenter{height:14px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEierIBf4HNgamNygtJd1sNlr8qSgAJwwrjFavvdWAGjDJIzGImcQ_JAoMBoONoV0XHq0Nl3XbyWG3hzennC7doD2ciUiFos2MaxJUrJ78xl_OJgLGE4GxqEIoLy8H6SDnRRZgKdpkHMtIM/s400/border.png) repeat-x top left}#cboxTopRight{width:14px;height:14px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5HDkXifAxmWEGuY6IwDT5cR0JE86-Bdm6VQZITI1VGmEIWieilOfmNtF6p3soK64Byb1RO-cfGQpavab2TPlkD-vCoMRM2fZHQwuc4vHBfi9kNnP9u8e5tjA0OQZuSPI0HXJ5ko8FJRg/s1600/controls.png) no-repeat -36px 0}#cboxBottomLeft{width:14px;height:43px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5HDkXifAxmWEGuY6IwDT5cR0JE86-Bdm6VQZITI1VGmEIWieilOfmNtF6p3soK64Byb1RO-cfGQpavab2TPlkD-vCoMRM2fZHQwuc4vHBfi9kNnP9u8e5tjA0OQZuSPI0HXJ5ko8FJRg/s1600/controls.png) no-repeat 0 -32px}#cboxBottomCenter{height:43px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEierIBf4HNgamNygtJd1sNlr8qSgAJwwrjFavvdWAGjDJIzGImcQ_JAoMBoONoV0XHq0Nl3XbyWG3hzennC7doD2ciUiFos2MaxJUrJ78xl_OJgLGE4GxqEIoLy8H6SDnRRZgKdpkHMtIM/s400/border.png) repeat-x bottom left}#cboxBottomRight{width:14px;height:43px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5HDkXifAxmWEGuY6IwDT5cR0JE86-Bdm6VQZITI1VGmEIWieilOfmNtF6p3soK64Byb1RO-cfGQpavab2TPlkD-vCoMRM2fZHQwuc4vHBfi9kNnP9u8e5tjA0OQZuSPI0HXJ5ko8FJRg/s1600/controls.png) no-repeat -36px -32px}#cboxMiddleLeft{width:14px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5HDkXifAxmWEGuY6IwDT5cR0JE86-Bdm6VQZITI1VGmEIWieilOfmNtF6p3soK64Byb1RO-cfGQpavab2TPlkD-vCoMRM2fZHQwuc4vHBfi9kNnP9u8e5tjA0OQZuSPI0HXJ5ko8FJRg/s1600/controls.png) repeat-y -175px 0}#cboxMiddleRight{width:14px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5HDkXifAxmWEGuY6IwDT5cR0JE86-Bdm6VQZITI1VGmEIWieilOfmNtF6p3soK64Byb1RO-cfGQpavab2TPlkD-vCoMRM2fZHQwuc4vHBfi9kNnP9u8e5tjA0OQZuSPI0HXJ5ko8FJRg/s1600/controls.png) repeat-y -211px 0}#cboxContent{background:#fff;overflow:visible}#cboxLoadedContent{margin-bottom:5px}#cboxLoadingOverlay{background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxZw6mVo-qy0-PQ08sZVIfkoJ6_CoLykFhuztl3BWXJ8zneDQMcjBByi0kjXtObPuuUahzlejYoL-V-wx2LE9UcX2rTtEhMJM3I5qJtMdtnh8PTlG8cA8TuCYJNrVdJQ-SZjExK3SyhsE/s400/loadingbackground.png) no-repeat center center}#cboxLoadingGraphic{https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjoVi0J8nnIdhZ7HX4bSlbGY9dmg4NiIchlLupaoCxw8BOZ34OhCXvk3_Vg5CC58QKmWXZ_JBYHatCR1at9pbhicENPpmvbaMFLIbDZ_MzxlJcmzbaX9ZhZRmEmKnZT40XKmmCgTCLWWkk/s400/loading.gif) no-repeat center center}#cboxTitle{position:absolute;bottom:-25px;left:0;text-align:center;width:100%;font-weight:bold;color:#7C7C7C}#cboxCurrent{position:absolute;bottom:-25px;left:58px;font-weight:bold;color:#7C7C7C}#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{position:absolute;bottom:-29px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5HDkXifAxmWEGuY6IwDT5cR0JE86-Bdm6VQZITI1VGmEIWieilOfmNtF6p3soK64Byb1RO-cfGQpavab2TPlkD-vCoMRM2fZHQwuc4vHBfi9kNnP9u8e5tjA0OQZuSPI0HXJ5ko8FJRg/s1600/controls.png) no-repeat 0px 0px;width:23px;height:23px;text-indent:-9999px}#cboxPrevious{left:0px;background-position:-51px -25px}#cboxPrevious.hover{background-position:-51px 0px}#cboxNext{left:27px;background-position:-75px -25px}#cboxNext.hover{background-position:-75px 0px}#cboxClose{right:0;background-position:-100px -25px}#cboxClose.hover{background-position:-100px 0px}.cboxSlideshow_on #cboxSlideshow{background-position:-125px 0px;right:27px}.cboxSlideshow_on #cboxSlideshow.hover{background-position:-150px 0px}.cboxSlideshow_off #cboxSlideshow{background-position:-150px -25px;right:27px}.cboxSlideshow_off #cboxSlideshow.hover{background-position:-125px 0px}#mdfb{font:12px/1.2 Arial,Helvetica,san-serif;color:#666}#mdfb a,#mdfb a:hover,#mdfb a:visited{text-decoration:none}.mdbox-title{background:#000;color:#fff;font-size:20px !important;font-weight:bold;margin:10px 0;border:20px solid #ddd;-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;box-shadow:5px 5px 5px #CCC;padding:10px;line-height:25px;font-family:arial !important}
</style>
<div style='display:none'>
<div id='exestylepopups' style='padding:10px; background:#fff;'>
<center><h3 class="mdbox-title">Receive all updates via Facebook. Just Click the Like Button Below...</h3></center><center>
<!-- facebook like box popup-->
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js'></script>
<script src="http://exeideasinternational.googlecode.com/files/jquery.colorbox-min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function(){
if (document.cookie.indexOf('visited=true') == -1)
{
var fifteenDays = 1000*60*60*24*30;
var expires = new Date((new Date()).valueOf() + fifteenDays);
document.cookie = "visited=true;expires=" + expires.toUTCString();
$.colorbox({width:"400px", inline:true, href:"#exestylepopups"});
}
});
</script>
<style type="text/css">
/*
ColorBox v1.3.16
(Copyright (c) 2011 Jack Moore - jack@colorpowered.com)
*/
#colorbox,#cboxOverlay,#cboxWrapper{position:absolute;top:0;left:0;z-index:9999;overflow:hidden}#cboxOverlay{position:fixed;width:100%;height:100%}#cboxMiddleLeft,#cboxBottomLeft{clear:left}#cboxContent{position:relative}#cboxLoadedContent{overflow:auto}#cboxTitle{margin:0}#cboxLoadingOverlay,#cboxLoadingGraphic{position:absolute;top:0;left:0;width:100%}#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{cursor:pointer}.cboxPhoto{float:left;margin:auto;border:0;display:block}.cboxIframe{width:100%;height:100%;display:block;border:0}#cboxOverlay{background:#000;opacity:0.5 !important}#colorbox{box-shadow:0 0 15px rgba(0,0,0,0.4);-moz-box-shadow:0 0 15px rgba(0,0,0,0.4);-webkit-box-shadow:0 0 15px rgba(0,0,0,0.4)}#cboxTopLeft{width:14px;height:14px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5HDkXifAxmWEGuY6IwDT5cR0JE86-Bdm6VQZITI1VGmEIWieilOfmNtF6p3soK64Byb1RO-cfGQpavab2TPlkD-vCoMRM2fZHQwuc4vHBfi9kNnP9u8e5tjA0OQZuSPI0HXJ5ko8FJRg/s1600/controls.png) no-repeat 0 0}#cboxTopCenter{height:14px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEierIBf4HNgamNygtJd1sNlr8qSgAJwwrjFavvdWAGjDJIzGImcQ_JAoMBoONoV0XHq0Nl3XbyWG3hzennC7doD2ciUiFos2MaxJUrJ78xl_OJgLGE4GxqEIoLy8H6SDnRRZgKdpkHMtIM/s400/border.png) repeat-x top left}#cboxTopRight{width:14px;height:14px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5HDkXifAxmWEGuY6IwDT5cR0JE86-Bdm6VQZITI1VGmEIWieilOfmNtF6p3soK64Byb1RO-cfGQpavab2TPlkD-vCoMRM2fZHQwuc4vHBfi9kNnP9u8e5tjA0OQZuSPI0HXJ5ko8FJRg/s1600/controls.png) no-repeat -36px 0}#cboxBottomLeft{width:14px;height:43px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5HDkXifAxmWEGuY6IwDT5cR0JE86-Bdm6VQZITI1VGmEIWieilOfmNtF6p3soK64Byb1RO-cfGQpavab2TPlkD-vCoMRM2fZHQwuc4vHBfi9kNnP9u8e5tjA0OQZuSPI0HXJ5ko8FJRg/s1600/controls.png) no-repeat 0 -32px}#cboxBottomCenter{height:43px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEierIBf4HNgamNygtJd1sNlr8qSgAJwwrjFavvdWAGjDJIzGImcQ_JAoMBoONoV0XHq0Nl3XbyWG3hzennC7doD2ciUiFos2MaxJUrJ78xl_OJgLGE4GxqEIoLy8H6SDnRRZgKdpkHMtIM/s400/border.png) repeat-x bottom left}#cboxBottomRight{width:14px;height:43px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5HDkXifAxmWEGuY6IwDT5cR0JE86-Bdm6VQZITI1VGmEIWieilOfmNtF6p3soK64Byb1RO-cfGQpavab2TPlkD-vCoMRM2fZHQwuc4vHBfi9kNnP9u8e5tjA0OQZuSPI0HXJ5ko8FJRg/s1600/controls.png) no-repeat -36px -32px}#cboxMiddleLeft{width:14px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5HDkXifAxmWEGuY6IwDT5cR0JE86-Bdm6VQZITI1VGmEIWieilOfmNtF6p3soK64Byb1RO-cfGQpavab2TPlkD-vCoMRM2fZHQwuc4vHBfi9kNnP9u8e5tjA0OQZuSPI0HXJ5ko8FJRg/s1600/controls.png) repeat-y -175px 0}#cboxMiddleRight{width:14px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5HDkXifAxmWEGuY6IwDT5cR0JE86-Bdm6VQZITI1VGmEIWieilOfmNtF6p3soK64Byb1RO-cfGQpavab2TPlkD-vCoMRM2fZHQwuc4vHBfi9kNnP9u8e5tjA0OQZuSPI0HXJ5ko8FJRg/s1600/controls.png) repeat-y -211px 0}#cboxContent{background:#fff;overflow:visible}#cboxLoadedContent{margin-bottom:5px}#cboxLoadingOverlay{background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxZw6mVo-qy0-PQ08sZVIfkoJ6_CoLykFhuztl3BWXJ8zneDQMcjBByi0kjXtObPuuUahzlejYoL-V-wx2LE9UcX2rTtEhMJM3I5qJtMdtnh8PTlG8cA8TuCYJNrVdJQ-SZjExK3SyhsE/s400/loadingbackground.png) no-repeat center center}#cboxLoadingGraphic{https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjoVi0J8nnIdhZ7HX4bSlbGY9dmg4NiIchlLupaoCxw8BOZ34OhCXvk3_Vg5CC58QKmWXZ_JBYHatCR1at9pbhicENPpmvbaMFLIbDZ_MzxlJcmzbaX9ZhZRmEmKnZT40XKmmCgTCLWWkk/s400/loading.gif) no-repeat center center}#cboxTitle{position:absolute;bottom:-25px;left:0;text-align:center;width:100%;font-weight:bold;color:#7C7C7C}#cboxCurrent{position:absolute;bottom:-25px;left:58px;font-weight:bold;color:#7C7C7C}#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{position:absolute;bottom:-29px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5HDkXifAxmWEGuY6IwDT5cR0JE86-Bdm6VQZITI1VGmEIWieilOfmNtF6p3soK64Byb1RO-cfGQpavab2TPlkD-vCoMRM2fZHQwuc4vHBfi9kNnP9u8e5tjA0OQZuSPI0HXJ5ko8FJRg/s1600/controls.png) no-repeat 0px 0px;width:23px;height:23px;text-indent:-9999px}#cboxPrevious{left:0px;background-position:-51px -25px}#cboxPrevious.hover{background-position:-51px 0px}#cboxNext{left:27px;background-position:-75px -25px}#cboxNext.hover{background-position:-75px 0px}#cboxClose{right:0;background-position:-100px -25px}#cboxClose.hover{background-position:-100px 0px}.cboxSlideshow_on #cboxSlideshow{background-position:-125px 0px;right:27px}.cboxSlideshow_on #cboxSlideshow.hover{background-position:-150px 0px}.cboxSlideshow_off #cboxSlideshow{background-position:-150px -25px;right:27px}.cboxSlideshow_off #cboxSlideshow.hover{background-position:-125px 0px}#mdfb{font:12px/1.2 Arial,Helvetica,san-serif;color:#666}#mdfb a,#mdfb a:hover,#mdfb a:visited{text-decoration:none}.mdbox-title{background:#000;color:#fff;font-size:20px !important;font-weight:bold;margin:10px 0;border:20px solid #ddd;-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;box-shadow:5px 5px 5px #CCC;padding:10px;line-height:25px;font-family:arial !important}
</style>
<div style='display:none'>
<div id='exestylepopups' style='padding:10px; background:#fff;'>
<center><h3 class="mdbox-title">Receive all updates via Facebook. Just Click the Like Button Below...</h3></center><center>
<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2FNama_page&amp;width=300&amp;colorscheme=light&amp;show_faces=true&amp;border_color=%23ffffff&amp;stream=false&amp;header=false&amp;height=258" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:300px; height:258px;" allowtransparency="true"></iframe>
</center><p style=" float:right; margin-right:35px; font-size:9px;" >Powered By <a style=" font-size:9px; color:#3B78CD; text-decoration:none;" href="http://koentji.blogspot.com">Koentji</a></p>
</div></div>
  • Ganti bagian Nama_Page dengan nama page facebook anda

Style 3

<link href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" rel="stylesheet"
></link><script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script><link href="/resources/demos/style.css" rel="stylesheet"></link><script>
$(function() { $( "#dialog" ).dialog(); }); </script> <div id="dialog" title="Get updates via Facebook"> <center> <iframe allowtransparency="true" frameborder="0" scrolling="no" src="//www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2FNama_Page&amp;width=292&amp;height=258&amp;show_faces=true&amp;colorscheme=light&amp;stream=false&amp;show_border=true&amp;header=false" style="border: none; height: 258px; overflow: hidden; width: 285px;"></iframe></center> <center style="float: right; margin-right: 10px;">  <!-- Please don't remove credit --><span style="color: black; font-size: xx-small; text-decoration: none;">Get this gadget at</span> <a href="http://www.koentji.blogspot.com/" style="color: #3b78cd; font-size: xx-small; text-decoration: none;" target="_blank">facebook popup like box</a></div>

Silahkan dipilih satu dan pilih sesuai selera anda. jika anda kurang menyukai dengan metode floating popup like facebook page ini, anda bisa mencoba memasang bagde page plugin  di link bawah ini.

Post a Comment

© Tips Kunci. All rights reserved. Premium By NiaDzgn