Senin, 08 Oktober 2012

Membuat Source Copy Blog


Saya akan share cara membuat source automatic copy blog atau yang sering di sebut degan link copy automatis berikut ini adalah code script yang harus di copy di HTML Template blog. Code ini di tempatkan di bawah code </head>





<!-- Script Sumber Otomatis -->
<script type='text/javascript'>
function addLink() {
var body_element = document.getElementsByTagName(&#39;body&#39;)[0];
var selection;
selection = window.getSelection();
var pagelink = &quot;<br/><br/> Read more at: <a href='&quot;+document.location.href+&quot;'>&quot;+document.location.href+&quot;</a><br/>Copyright By In-foit.blogspot.com&quot;; // change this if you want
var copytext = selection + pagelink;
var newdiv = document.createElement(&#39;div&#39;);
newdiv.style.position=&#39;absolute&#39;;
newdiv.style.left=&#39;-99999px&#39;;
body_element.appendChild(newdiv);
newdiv.innerHTML = copytext;
selection.selectAllChildren(newdiv);
window.setTimeout(function() {
body_element.removeChild(newdiv);
},0);
}document.oncopy = addLink;
</script>
<!-- End Script Sumber Otomatis -->

Tidak ada komentar:

Posting Komentar