Friday, 11 April 2014

Automatic Backlink Generator

Free 2,500+ Backlinks

This would creates 2,500+  pages about your website  with backlinks pointing back to your website.
Yes some of them are no-follow and do-follow, but  well established websites regularly crawled by Google.
Your pages will get backlinks, visited and indexed more frequently by Googlebot and other search engine bots.

Click Here

Adsense Code Converter to HTML

Adsense Code Converter to HTML







Tuesday, 11 February 2014

How to Create custom popup window in blogspot blogger

We can create two types of popup windows for blogspot blogger.

1. Popup window comes when you click any where on your blog.

Copy and paste following code before </body>

<script type="text/javascript">
document.body.onclick= function(){
window.open('http://google.com', 'poppage', 'toolbars=0, scrollbars=1, location=0, statusbars=0, menubars=0, resizable=1, width=950, height=650, left = 300, top = 50');
}</script>
 
2. Automatic popup after x seconds of page loads
 
 <script language="javascript">

timer=setTimeout("window.open('popup.html','','width=200,height=200')",5000)

</script>