How to Make a Pop Under Ads Alone in Blog


MyBacklink86 - How To Make Ads Pop Under Your Own Blog? It is very easy, there is not even one minute, then the ad can be directly installed on your favorite blog. But the problem is not easy or not, but rather whether the existence of these ads are favored by visitors or not? Well, it is important to note when you have no intention to advertise this model in your blog.

As we all know that pop under ads are ads that appear in a new window on the browser, which is where these ads appear automatically, alias unwanted visitors. These ads usually appear when there is an interaction of visitors, ie clicking on links contained in our blog.

Here MY BACKLINK share how, please look carefully ya:

1. Log in to Blogger.
2. Select Layout >> Add Gadget >> HTML / JavaScript.
3. Paste the code below into >> HTML / JavaScript.


<script  type="text/javascript">  function addEvent(obj, eventName, func){       if (obj.attachEvent)      {      obj.attachEvent("on" + eventName,  func);      }      else if(obj.addEventListener)      {       obj.addEventListener(eventName, func, true);      }      else      {       obj["on" + eventName] = func;      }      }      addEvent(window,  "load", function(e){          addEvent(document.body, "click",  function(e)          {             if(document.cookie.indexOf("bkc=lyk")  == -1)             {          params = 'width=' + screen.width;           params += ', height=' + screen.height;                  params += ',  top=1000, left=1200px ,scrollbars=yes';                  params += ',  fullscreen=yes,width=1000,height=800';                  var w = window.open("http://mybacklink86.blogspot.com", 'window', params).blur();                   document.cookie = "bkc=lykshoptinhoc";                  window.focus();              }          });      });  </script>

Note:
Please change the URL of the red with url address of the blog you want.

Pop under ads will only appear twice, namely when we visit our blog, and then we clicked on a link on our blog. Click the link to the third and so on, pop under ads will no longer appear.
LEARN MORE

How To Easily Install SEO Smart Links in Blog

SEO Smart Links in Blog
My Backlink - In this article my backlink will be sharing plugin SEO Smart Links & which is a WordPress plugin that works to change every word specified in an article be a link.

How to Work Smart SEO Plugin Link This plugin will read every word pal specified in the article. For example if my friend added the word SEO or Blogger in the plugin, then every word will be automatically turned into a link if at all in your blog article contained the word.

How to Install SEO Smart Links

Open Blogger > Template > Then add the following code before the</body>

<script type='text/javascript'>
function smartLink(){
    this.keywdHref = new Object();
    this.add = function(keyword, href){
        if(keyword.substr(0,1) != &quot; &quot;){keyword = &quot; &quot; + keyword;}
        this.keywdHref[keyword] =  href;
    }
    this.createAnchor = function(){
        var objs = document.getElementsByTagName(&quot;div&quot;);
        for(var i=0; i&lt;objs.length; i++){
            var obj = objs[i];
            if(obj.className.indexOf(&quot;post-body&quot;)&gt;-1){
                var content = obj.innerHTML;
                for(var keyword in this.keywdHref){
                    var href = this.keywdHref[keyword];
                    var newstr = content.replace(keyword, &quot;&lt;a href=&#39;&quot;+href+&quot;&#39;&gt;&quot;+keyword+&quot;&lt;/a&gt;&quot;, &quot;gi&quot;);
                    obj.innerHTML = newstr;
                    content = newstr;
                }
            }
        }
    }
    this.startScript = function(){
        var onLoad = window.onload;
        window.onload = function(){
            if(onLoad){onLoad();}
            setTimeout(&quot;f.createAnchor()&quot;, 100);
        }
    }
}
</script>
<script type='text/javascript'>
var f = new smartLink();
f.add(&quot;SEO&quot;, &quot;https://mybacklinks86.blogspot.com/&quot;);
f.startScript();
</script>


If you want the plugin above only appear on post pages only, please add a special conditional tags post page.

Save template

In the code that is marked with SEO by keywords pal specify and change https://mybacklinks86.blogspot.com/ with the url of your blog.


In the above code buddy can add more keywords below, as an example

f.add(&quot;SEO&quot;, &quot;https://mybacklinks86.blogspot.com/&quot;); f.add(&quot;Template&quot;, &quot;https://mybacklinks86.blogspot.com/&quot;); f.add(&quot;Blogger&quot;, &quot;https://mybacklinks86.blogspot.com/&quot;);

Buddy can also add words into bold, for example.

f.add(&quot;&lt;b&gt;SEO&lt;/b&gt;&quot;, &quot;https://mybacklinks86.blogspot.com/&quot;);

Note

It is advisable to use three keywords is enough.
LEARN MORE

How to Make Your Own URL Shortener with JavaScript in Blogger

How to Make Your Own URL Shortener with JavaScript

MyBacklink86 - How to Make Your Own URL Shortener with My Backlink, JavaScript - In this post I tried to create its own URL shortener using JavaScript code. If before me and you used to use bit.ly, goo.gl and the like, now I am and you will create its own URL shortener. The script that I can share is also called a URL Redirect. URL Redirection or transfer permalink actually been facilitated by a blogger, only limited on our blog, can not lead to other blogs.

If the existing CMS WordPress plugin "Simple URLs", the result will be something like with it, because I was also inspired by this plugin. If my friend do not know, maybe my friend never seen such links http://mybacklink86.blogspot.com/go/fb more or less like the picture. To be more clear, please click the Facebook My Backlink 86 below:

 https://your-link.blogspot.com/go/fb

To make it, save the code above </head> .

Example One

<script language='javascript'>
//<![CDATA[
var key = window.location.href.split("go/")[1].replace("/","")
var urls={
'fb':'https://www.facebook.com/mybacklink86,
'gplus':"https://plus.google.com/+xxxxxx",
'twitter':"https://twitter.com/xxxxxxx",
'blabla':"http://xxxxx.com/",
'blabla':"http://blabla.net",
'blabla':"http://www.blabla.com",
'blabla':"https://www.blabla.us" /* the latter without coma */
}
if(key){
if(urls[key]){
window.location.href=urls[key]
}else{
document.write("'"+key+"' not found :(");
}
}
//]]>
</script>

Example Two

<script language='javascript'>
//<![CDATA[
var key = window.location.href.split("go/")[1].replace("/","")
var urls={
'fb':'https://www.facebook.com/mybacklink86,
'gplus':"https://plus.google.com/+xxxxxx",
'twitter':"https://twitter.com/xxxxxxx",
'blabla':"http://www.blabla.com",
'blabla':"https://www.blabla.us" /* the latter without coma */
}
if(key){
if(urls[key]){
window.location.href=urls[key]
}else{
document.write("'"+key+"' not found :(");
}
}
//]]>
</script>

Example Three

<script language='javascript'>
//<![CDATA[
var key = window.location.href.split("go/")[1].replace("/","")
var urls={
'fb':'https://www.facebook.com/mybacklink86,
'gplus':"https://plus.google.com/+xxxxxx",
'twitter':"https://twitter.com/xxxxxxx" /* the latter without coma */
}
if(key){
if(urls[key]){
window.location.href=urls[key]
}else{ document.write("'"+key+"' not found :(");
}
}
//]]>
</script>

Change / add the link as desired mate. To understand it, when I wrote 'fb':'https://www.facebook.com/mybacklink86' means, when accessing http://your-link.blogspot.com/go/fb will lead to https://www.facebook.com/mybacklink86.
LEARN MORE

How to Make the Anti Copy Paste Except certain parts of Blogger

don't not copy paste

Live Demo Here

MY BACKLINK - How to Make the Anti Copy Paste Except certain parts of Blogger. Have your Blog Copas by others? if ever what you feel? surely you would be annoyed and angry, we are tired - tired of writing by hand until kinky, eh not him someone else is reading your blog copy and paste the link source without.

One way to minimize the blog post so as not to copy and paste is to install script or css anti Copas blog you, but this is not suitable for you, if your blog about the tutorial, because the blog tutorial there are some code like css, html, javacript and others - others who must be able to copy and paste someone else. Oh yes anti copy and paste this script does not use javascript but using css, so it does not affect the loading of your blog.

How to Make the Anti Copy Paste Except certain parts of Blogger.

  1. Log in to blogger account.
  2. Log into the template editor (Edit HTML).
  3. Then put the anti Copas css code below the above code ]]></b:skin>.

  4. 
    .post-outer {
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -khtml-user-select:none;
    -ms-user-select:none;
    -moz-user-select:none;
    }
    


  • Then so that later we can make certain parts can copy and paste, then we have to add the code below in the section & blockquote, pre and code.
  • The trick pairs css below the above code ]]></b:skin>.

    
    .post blockquote,.post pre,.post code{
      -webkit-touch-callout:text;
      -webkit-user-select:text;
      -khtml-user-select:text;
      -ms-user-select:text;
      -moz-user-select:text;
    }
    


  • The last step Save the template and see the results.

  • Now you can make your blog is safe from the copaser. If certain parts of your blog can copy and paste, then you've succeeded in implementing trick Easy Ways to Make Blog Not Be in Copas Unless Specified Part.

    Hope it is useful
    LEARN MORE

    Ceate a Breadcrumb SEO Friendly blogger

    breadcrumb navigation SEO friendly blogger

    My Backlink - Navigation breadcrumb is a link that serves to provide guidance as to the location or category of an article and allows you to find the basic page of the article being read.

    Link shown here is the link where your articles are or can be called as a location of your article. Breadcrumb navigation is commonly placed on the title of the article / post.

    There are three benefits / usefulness of breadcrumb navigation, namely:

    1. Beautify the look of the page / article.
    2. Allows visitors to browse the blog.
    3. Optimizing a page in search engines (search engines).
    The most important of the above 3 things of course is "optimizing pages in search engines" or often called SEO. For those who do not know about SEO, you can search on google about what SEO.

    Breadcrumb navigation may not be as important as keywords in SEO. But clearly the breadcrumb navigation is one of the factors of SEO. So, a little amount will also affect the position of your blog in search engines, especially Google.

    How to install the breadcrumb navigation in the blogger.

    Breadcrumb navigation in the blogger will appear based on the label of your post. Here's the tutorial.
    1. Login to the blogger.
    2. Select the Layout (Layout) »Edit HTML.
    3. Tick to Expand Widget Templates.
    4. Find the following code. You will find more than one code like this. Select the second one, which is in / under the code <b:includable id='post' var='post'
    <b:if cond='data:post.title'>

    5. Add the following code at the bottom.

    <b:if cond='data:post.labels'>
    <b:loop values='data:post.labels' var='label'>
    <a expr:href='data:label.url' rel='tag'><data:label.name/></a>
    <b:if cond='data:label.isLast != "true"'>,</b:if>
    </b:loop>
    &#187;
    </b:if>
    <data:post.title/>
    </b:if>

    6. Save the template.

    Now look at the result. If it is successful, it means that you are already running one of the SEO tips.

    Hopefully be useful :) .
    LEARN MORE