Okay so i'm pretty much trying to load a section from my forum onto my main page within an iframe.
I know it's not possible to manipulate frames that don't come from your own domain; but my forums on the same site so it should be sweet. When it loads; the iframe opens up the whole forum up; so I just want to hide certain divs on the loaded iframe.
I'm really not sure how I should go upon doing this. I've tried many things like;
document.getElementById('page-header').style.display="none";
or
#page-header {
diplay: none;
}
But neither's seeming to work.
Any help would be great. (: