• Menu
  • Lycoris
  • Category
    • Animation
    • Nature
    • People
    • Technology
    • Vogue
    • Other
  • Tools
    • CSS
    • jQuery
    • Cookies
    • Wicked
  • Menu
    • CSS
    • jQuery
    • Cookies
    • Wicked
  • Sub Menu
    • CSS
    • jQuery
    • Cookies
    • Wicked

Top Free IT

Share free template blogger

  • Home
  • Contact
  • Sitemap
  • Static Page
Menu
Facebook How to JQuery Widgets How To Add JQuery Pop-Up Facebook Like Box To Blogger

How To Add JQuery Pop-Up Facebook Like Box To Blogger


Before adding this, Widget you need to instal jQuery Plugin. If jQuery Plugin is already installed on your Blog then just follow the steps below  and install the widget,but if not,then Go To Blogger Dashboard >> Click On Template >> and Search for </Head> tag , now copy the below script and paste it above
tag.
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js"></script>


  • After instaling the jQuery Plugin To Your Blog Follow the below steps
  • Go To Blogger Dashboard
  • Click On Layout
  • Now Click On Add a Gadget

  • Now a Box will Popup
  • Select HTML/JavaScript There
  • Now another Box will popup
  • Now Copy the below Script and make the specific changes and paste it into the HTML/JavaScript Box 
<style type="text/css">#makingdifferentpopup{
position: fixed;
top:100px;
z-index:9999;
display:none;
padding:0px;
right:600px;
border:10px solid rgba(82, 82, 82, 0.7);
-webkit-background-clip: padding-box; /* for Safari */
background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
-webkit-border-radius:8px 8px 8px 8px;
-moz-border-radius:8px 8px 8px 8px;
border-radius:8px 8px 8px 8px;
width:400px;
height:360px;
overflow:hidden;
}
#makingdifferentpopup span{
font-size:20px !important;
font-weight:bold !important;
}
#makingdifferentpopup h1{
background:#6d84b4 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh7ciqIs7aOTFuwFnwzIyukBF0y0_vF0Q-fxYTwgs8_DYpD2KcB1uxwB8uRgabMnRaRneGZGilApjVESRkLuNgvj5wjdUtgqDmSeIWuTq0XfuYedNL9OGqvs6xh5sU-Eu2TkEwLIALzHBei/s1600/%255Bwww.gj37765.blogspot.com%255Dh1.png) 98% no-repeat;
border:1px solid #3b5998 !important;
color:#FFFFFF !important;
font-size:20px !important;
font-weight:700 !important;
padding:5px !important;
margin:0 !important;
font-family:'"lucida grande",tahoma,verdana,arial,sans-serif !important;
overflow:hidden !important;
}
.htmlarea{
font-size:12px !important;
font-weight:normal !important;
height:265px !important;
padding:1px !important;
background:#fff !important;
border-bottom:2px solid #ddd;
overflow:hidden !important;
}
#mdfooter{
text-align:left;
background:#F2F2F2 !important;
height:56px !important;
padding:10px 10px 10px 10px !important;
overflow:hidden !important;
}
#mdclose{
float:right;
background-color:#eee !important;
border:1px solid #ccc !important;
color:#111 !important;
font-weight:bold !important;
padding:5px 8px 5px 8px !important;
text-decoration:none !important;
display:inline-block !important;
font-family:'"lucida grande",tahoma,verdana,arial,sans-serif !important;
outline:none !important;
position:relative !important;
font-size:18px !important;
margin:1px !important;
}
#mdclose:active{
top:1px;
left:1px;
}
.grabthis{
bottom:80px;
font:8px "lucida grande",tahoma,verdana,arial,sans-serif;
position:absolute;
right:6px;
text-align:right;
z-index: 99999;
}
.grabthis a{
color: #000;
text-decoration:none;
}
.grabthis a:hover{
text-decoration:underline;
}
</style>
<script type='text/javascript'>
jQuery(document).ready(function() {
function makingdifferent_ppopup()  {
var sec = 10
var timer = setInterval(function() {
   $("#mdfooter span").text(sec--);
   if (sec == 0) {
      $("#makingdifferentpopup").fadeOut("slow");
      clearInterval(timer);
   }
},1000);
  var mdwh = jQuery(window).height();
  var mdpph = jQuery("#makingdifferentpopup").height();
  var mdfromTop = jQuery(window).scrollTop()+50;
 jQuery("#makingdifferentpopup").css({"top":mdfromTop});}
jQuery(window).fadeIn(makingdifferent_ppopup).resize(makingdifferent_ppopup)
 //alert(jQuery.cookie('sreqshown'));
 //var mdww = jQuery(window).width();
 //var mdppw = jQuery("#makingdifferentpopup").width();
 //var mdleftm = (mdww-mdppw)/2;
   var mdleftm = 500;
 //var mdwh = jQuery(window).height();
 //var mdpph = jQuery("#makingdifferentpopup").height();
 //var mdfromTop = (jQuery(window).scrollTop()+mdwh-mdpph) / 2;
 jQuery("#makingdifferentpopup").animate({opacity: "1", left: "0" , left:  mdleftm}, 0).show();
     jQuery("#mdclose").click(function() {
jQuery("#makingdifferentpopup").animate({opacity: "0", left: "-5000000"}, 1000).show();});});
</script>
<div id="makingdifferentpopup">
<h1>Join us on Facebook</h1>

<div class="htmlarea"><iframe allowtransparency="true" frameborder="0" scrolling="no" src="//www.facebook.com/plugins/likebox.php?href=https://www.facebook.com/freebloggerthemes&amp;width=400&amp;colorscheme=light&amp;show_faces=true&amp;border_color=%23fff&amp;stream=false&amp;header=false&amp;height=250" style="border:none; overflow:hidden; width:400px; height:250px;"></iframe>
<div class="grabthis">By <a href="http://blogger-templatees.blogspot.com/" target="_blank">Get This Widget!</a></div>
</div>

<div id="mdfooter">Please wait..<span>10</span> Seconds <a href="#" id="mdclose" onclick="return  false;">Cancel</a></div>
</div>
<!-- End popup -->


  1. Replace freebloggerthemes in the script with your Own Facebook Fan page username.
  2. For changing the Time Interval, change var sec = 10 with your Own Desire time.
  3. If you are interested in changing the height and width of the Box Change 250 and 400 in the Script
  4. For Changing The Text "Join us on Facebook" just change the text with your Own.
  5. Change The Text "Cancel" with your Desire text
  6. Now Copy the Script and paste it into the box 
  7. Now hit Save and that's it 
Credit - "MakingDifferent"

Adding this jQuery Popup will force your Readers to like your Fan page and as a result you can increase your Fan page Likes,Share your Beautiful Ideas with us and if you have any Question ask us, stay Blessed , Happy Blogging.

Unknown
Add Comment
Facebook, How to, JQuery Widgets
Tuesday, November 3, 2015
  • Share
  • Share

Related Posts

  • How to install "Back to the Top" button with smooth scrollingThis is really  great thing for the long posts, articles or whatever you have on your blog / w
  • How to Create Rounded Images with CSSDo you want to display circular images on your website? With CSS3, this can be done with in few sec
  • How to Add a Glued Fixed Flaping Widget in Blogger This widget all made by these both CSS and HTML there is no any kind of javascript used so it will
  • How to Add Zoom Effect To Your Blog Images On Mouse HoverCSS is really very powerful and useful tool today , We can different types of the effects to images
  • How to add a Simple Stylish Subcription Box To Blogger This tutorial is about how to add a simple subscription box to your blogger blog, in my previous po
  • How to Add “lang” Attribute to a Blogger TemplateAdding the "lang" attribute into the html tag specifies the default language of the website's conte

Newer Older Home
Lycoris Responsive Blogger Template

Lycoris Responsive Blogger Template

Mauris mattis auctor cursus. Phasellus tellus tellus, imperd…

Most Awesome Breathtaking Places

Most Awesome Breathtaking Places

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sat…

Overall of Fashion Week

Overall of Fashion Week

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sat…

Awesome Fashion Trend in For Winter

Awesome Fashion Trend in For Winter

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sat…

7 Ways To Travel Like a Pro

7 Ways To Travel Like a Pro

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sat…

<12345>

Weekly Posts

  • thumbnails
    Viralisme
  • thumbnails
    How to Create Rounded Images with CSS
  • thumbnails
    Viral Pro
  • thumbnails
    Swift Blogger Template
  • thumbnails
    Strap Blog
  • thumbnails
    Gravity V3 Responsive Blogger Template

Label

1 Column 2 Column 2016 2017 3rdball 3rdbell Acacia Active Mag Ad Mag Adelle Adello Admiral Tumblr Theme Ageka Simple Agista Ajustmag Alice Allure Amadeus aMag Amalie Amazine AMP Template AnankeMag Anime Anime Clean AnimeBatch AnimeMagzs AnimePacker Animeplus AnimeTango Arden Argent Arlinadesign Asteroid Astonish Author Widget Authority Auto Razz Auto Read More Autumn Avocet AwesomeOne Axact Back To The Top Barbar Base Beauteous 2016 Beauty BeautyTemplates Beehive Best Mag Better Mag BizDesk BizGlobe Black Black Cover Blacken BLagioke Blogable Blogari Blogger Blogger Magazine Blogger Template Blogger Templates Blogger Widgets Bloggertheme9 Blogghiamo Blogging Blogish Blogius Blogmag BlogrCart BlogrCart Closet v2 BlogrCart Mukabuku Blogrcart One BlogrCart SHOWCASED BlogrCart White2 BlogrShop Blogstar Blogus Blue Blue APK BlueTheme Blush Bmag BoldNews Bolina Brosense Brown Brownie Bthemez Bulan Busby Bushwick Business Businis Button Buttons Calypso Canvas Clock CarsPortal Cartoons CarZilla CB Blog Foto CelebVision ChicMag Chitoge Attack Claire Clothing CocoMag Colorindo Coming soon Conversion Cool Mag Coolbaby Cooperate Coral Drive Corner Mag Cosparell Count Me Couture Creative CreativePen Crystal CSS CSS3 CTR Booster Daily Health DaisyChain Daksh Dark Color DarkMag Date A Live Davis Dearpins Decent Deep Blog Defersite Delivery Lite Demo Page DeNews Design and CSS DesignIdea DesignPress Detube Deverclean Devil Survivor Devote Devotion Grid Discover Djogzs Dollar Sense Domag Download Buttons DreamLine Drop Down Menu Dropen Duena Duos Mag Dzine Easy Blog Easy Mag EasyMag Edogawa Education EducationPro Effective eLearn Elegantes Eleganto eNewspaper Estelle Evo Magz Exmanga ExpressNews Extra News Fabish Facebook Fag Mag Familia Fan Base Fanbase v2.2 Fancy Fanstrap Anime Fantasy Fasel News Fashion Fashion Blogger Template Fashionistas Fashionly Fast 2 Fast Edition Fast Gear fastnews Feedly Felice Fenomen Figaro Film Reviews Final Fantasy Fitness Diva Flashback FlatMag Flatness Flavio Flavio Simple Flexmag Flytemplate Food Food Blog Foodlicious FootballZone Foto Fotografity Foundia Free Blogger Template Free Premium Fresh Blog Fresh View Frontier Fusion G Vusion Gallery GameDaily GameFusion GameMag GameMaster Gameport Gamer Games GamesExpo GamesNet GamesPad GamingCenter Gear World GeoWall GirdBook Gladiolus Minimal Glam Up Glamour Glooger Gommero Gordon Gossip Gracious Gray GreatMag Green Green APK Pro GreenMag Grey Grid Template Gridisme Gumi Vocaloid Gym Happenings HaralampiLux Harmonia Hatsune Miku Headlines Health Health/Fitness HealthDaily HealthLab HealthPro HealthyLiving HeradinoMag HestiaMag HighEnd Hitamz Holomatic Honey HorseMag HostingBlog Hotmag How to HTML HugeMag iBeats Image Image Gallery Immersed iMoechan Impreza Indzign Ingrid Instaset Instinct Intent Invert Invert Grid Invision Iori Kyun iPrime iPro Irsah Ivanesia Ivero Iwata JalanTikus Jax Lite Jaximus Jenny Johansen JosePhine JoyFul Fashion JPStation jQuery JQuery Widgets Jugas Jumper Jupiter Kalimaz Kalon KitKat Klarity Koenda Kompi Landing Page Kompi Males Kontify Krakatau Lite Kuro Simple Kyoukai no kanata Lady Finger Lagicapek Landing Page Language Attribute Ledera Lemy LepontoMag Life-Fashion LifeBlog Lifestyle Lifestyle Magazine Limelight Livinia LocalNews Loveria LunaMag Lux News Mag Zilla Magazine Magazine Template Magcro Parallax Magento Magnifique Magnifying Glass MagOne MagtiMate MagTime MagWeb Magzima Marble Mashable Maskolis Masterpiece MaterialZine MaxaZine MaxTemplate Maya McKinley Mdcsite MDFostrap Meed Mega mag Mega Shop Mega Social Menowo MetroMag Micro Mag MicrownSoft Grid Milano Mini-T Minima Minima Colored Minimal Minimalist Mistery MNMLIS MobileZone Modern ModernMag Monal Montric Motive Mag Moveone Movie MovieSpot msdesignbd mSora Mugi Mularonis Multimedia MultiPurpose Blogger Template My Mag MyRestaurant Mystery N Light Nami Press Nanopress Navigation Menu Neda NeedMag Neo Mag NEOMAGz Netia New Minima Colored NewBloggerThemes NewMag NewNews NEWS News 52 News24 NewsBoard NewsCenter NewsGrand Newsly Newspaper NewsPark NewsPro NewsTube NewsZoom Nimbus Nisekoi Novelo Nubie Banget Ocean Mag Odd Themes Old Themes Older Themes Olive Olivia One Page OneStream OnlineMagazine OpenNews Oracle Orange Ore no Imouto Oreki Houtarou Origins Otaku News Ovation Overload Padhang Pago Pakdhe Johny Palki Palki 2 Palki Grid Palki Ultimate Particular Responsive PBT PBThemez Perish Personal Personal Blog Personal template Photo Photographer Blogger Template Photography Phrozen2 Picshots Picture Pink Pinterest Pointer Portfolio Power Game Powered by Blogger Precious Lite Preloading Effect Premium Premium Themes PremiumBloggerTemplates PressMania Pro Templates Lab Probama ProMag ProNews ProNewspaper Publisher Purple Raintemplates Raintimes Raspberry Rastolinos Read More Readily Reading Red ReDesign Related Posts Responsive ReStyle Revelio Rezero Chan Risa RokoPhoto Rosemary Scoop Scratch SeeNews Sense Seo Beast Blogger Templates Seo Boss seobloggertemplates Seofast Setiva Shine Shingeki No Kyojin Shiroi Shop Template Silver Simplart Simple Fast Simple Sense SimpleBuzz Simplesanget Simplest Simplex Simplex Audio Simplify Simply Mag Sincup Singl Sleekify Slider Smart Blog Smart News SmartBlog Smartseo SNews Snowseo Social Icons Social Share Buttons SocialMediaMarketing Socio SoftWind Solar Solon Soone Soonex Sora Sora Book Sora Buzz Sora Films Sora Games Sora Mag Sora Travels Sparkle Sparkling Splendid Splendor 2 SpotCommerce Spraymag Square StagoMag Strength Studio Stylish Subscribe to Subscription Box Sugar SunMag Sure APK SweeTravel Swift Takis Team Blog Tech Tech Life Tech Mag Tech World TechBlog TechGo TechJournal TechLand Technext Technology TechPro TechTrend TechUp TechZine Template TemplateClue Templateify Templateism Templatesyard Templatetrackers Templatezy Templatium Templatoid The Blog Theme The Dens The Reviewer TheAcademy TheBloopers TheCars Theme Theme Mag Themeforest Themeindie Themeswear Themexpose TheMusic TheNews TheSmart TimesDay Toniq Tooltip TopGames Torrentism Toujours TP Blue Mag Travel Travel Blog Travel Hub TravelHub Treasury Trendmag Trendy Divaa Tribes Tribute TriVusion Trophy Tubies Tumblr Ultimate Tech Under Construction UniEdu Uong Jowo UpMag UpStream Usagilabs Vacations Value Veethemes Verda Vidal Video VideoPro VideoShow Vienna Vienna Lite 2 Vienna Lite 3 Vikka VipMag Viral Mag Viral Pro Viral Ta ViralNews Vogue 2016 Voux Wallbar Warm Mag way2themes Weblogtemplates Wedding White Widget Widgets Wizzblue WorldGamer WpHealth WPNewsPaper Writer Writer Evolution X-Man XPress News Yellow YesNews Yo MAG Yo Templates YouMusic YouNews Youtube Responsive Blogger Template Zen Mag Zinnias Lite Zippo Zipson Zoom Effect

Recent Post

  • All topics simplify 2 premium for blogger
  • Gravity V3 Responsive Blogger Template
  • Moslar
  • Vox - Responsive
  • Axorys Blogger Template
  • TdbSimple2
  • Viralisme
  • Simple Template
  • AMPNews
  • Digizena

Contact

Name

Email *

Message *

  • Trang chủ

copyright © 2017 Top Free IT All Right Reserved . Created by Idntheme . Powered by Blogger