Thoughts of mine

I write some of my Ideas, Issues I faced in the development and writing skill improvement articles about my personal activities.

Remove the Adverticement In free Domain

No comments

Now We are goind to discuss " How to Remove the Adverticement In free Domain? "


Just very simple to use javascript

first of all u need to add a common div to cover your all content in page like this body element

put an Id to "#page"   

Now i am going to filter my div  element from other elements using simple javascript


$(document).ready(function(){
    var fav_count = document.body.childNodes.length;
    for (var i = 0; i < fav_count; i++) {
        if(document.body.childNodes[i].tagName){
            if(document.body.childNodes[i].id !="page"){document.body.childNodes[i].style.display="none"}
        }
    }
});

In this script file load when the document is ready.








No comments :

Post a Comment