how to delete the last line...

M

Mel

i use the following to add a line. how can i delete the last line ?

oDiv = document.getElementById("MyDiv");
oDiv.innerHTML = oDiv.innerHTML + string;
 
R

RobG

Mel said:
i use the following to add a line. how can i delete the last line ?

oDiv = document.getElementById("MyDiv");
oDiv.innerHTML = oDiv.innerHTML + string;

The innerHTML method "specifies or receives the content between
the start and end tags" of an element.

<URL:http://msdn.microsoft.com/workshop/author/dhtml/reference/properties/innerhtml.asp>

// content (text & all markup) replaced by ''
// which effectively means deleted
oDiv.innerHTML = '';

// contents replaced by the value of 'string'
oDiv.innerHTML = string;

// contents replaced by text & markup
oDiv.innerHTML = "Here is a <b>bold</b> word";
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,904
Latest member
HealthyVisionsCBDPrice

Latest Threads

Top