Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to leave this (header)

I want to take this out (should only be png images)

I also want to leave this (footer)

Is there a way to clear out the things in the middle of the page using Javascript, or a Javascript trigger?

This is for a game, when the area changes I want to remove it and replace it with another area.

share|improve this question
probably. is there some kind of pattern? That is, could you find something in common with all of the things you want taken out? – Phillip Schmidt Aug 22 '12 at 22:49
Sure it is, but give some more info – petar Aug 22 '12 at 22:49
Try to give a more realistic example. This one tells us nothing. It's not even HTML, for one. – Amadan Aug 22 '12 at 22:49
Is that better? – Aidan Edwards Aug 22 '12 at 22:51
Are you saying you want to know how to delete sections of the DOM? – user416527 Aug 22 '12 at 23:12

closed as not a real question by esqew, Amadan, Paulpro, Fabrício Matté, Mike Samuel Aug 22 '12 at 23:12

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

If you are talking about a page that you are viewing, you can use firebug and edit things in place.

If you are talking about a page that you control, jQuery will help reduce the nuances of javascript object properties to the show() and hide() functions. Really all that does is manipulate the visibility to be hidden or not.

see: visibility property

share|improve this answer
More info added, that wouldn't work, because I don't want to get it back later. If I want it back, I can generate it again. – Aidan Edwards Aug 22 '12 at 22:54

Given the following HTML:

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <input type="button" onclick='document.getElementById("content").innerHTML = "This text will change everything in the middle (content) div.";' value="Click me"/>
        <div id="header">
        This is a header
        </div>
        <div id="content">
            Temporal text.
        </div>
        <div id="footer">
            This is a footer.
        </div>
    </div>
    </form>
</body>
</html>

If you click the button, it will clear, and replace the text it already exists in the div content, with whatever you put in the innerHTML property.

Good luck! Edit:

jsFiddle: http://jsfiddle.net/xn2Wd/

share|improve this answer
Is there possibly a tag that I could put inside of the image files? like the src, url, left, and right attributes. – Aidan Edwards Aug 22 '12 at 23:00
No tag is allowed inside of an img element, what exactly do you want to accomplish? You can edit the properties of these if you use document.getElementById though. – Hanlet Escaño Aug 22 '12 at 23:01

You can use removeChild and appendChild methods of the Element object to do this.

share|improve this answer

You can also use element.style.display = "none"

var myDiv = document.createElement("div")
    myDiv.innerHTML = "string"
    myDiv.id = "testing"
document.getElementsByTagName("body")[0].appendChild(myDiv)

document.getElementById("testing").style.display = "none"

Live Example document.onclick event: http://jsfiddle.net/vRaG5/

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.