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

I have the 1 button and some text in my HTML like the following:

function get_content(){
   // I don't know how to do in here!!!
}

<input type="button" onclick="get_content()" value="Get Content"/>
<p id='txt'>
<span class="A">I am</span>
<span class="B">working in </span>
<span class="C">ABC company.</span>
</p>

When the user clicks the button, the content in the will become the follow

Expected Result:

<p id='txt'>
// All the HTML element within the <p> will be disappear
I am working in ABC company.
</p>

Can anyone help me how to write the javascript function? Thank you.

share|improve this question

5 Answers

up vote 3 down vote accepted

this works for this simple example, but the other solutions look more robust:

<script>
function get_content(){
 var html = document.getElementById("txt").innerHTML;
 document.getElementById("txt").innerHTML = html.replace(/<[^>]*>/g, "");
}
</script>
<input type="button" onclick="get_content()" value="Get Content"/>
<p id='txt'>
<span class="A" style="background: blue;">I am</span>
<span class="B" style="font-style: italic;">working in </span>
<span class="C" style="font-weight: bold;">ABC company.</span>
</p>
share|improve this answer

You can use this:

var element = document.getElementById('txt');
// innerText for IE, textContent for other browsers
var text = element.innerText || element.textContent;
element.innerHTML = text;
share|improve this answer
+1 - Was looking for some high performance text method since it gets done a lot in a loop. jQuery was not performant enough, but this was very fast. Worked in IE8+, chrome, ff. Perfect. – Travis J Apr 19 at 19:48

That should work:

function get_content(){
   var p = document.getElementById("txt");
   var spans = p.getElementsByTagName("span");
   var text = '';
   for (var i = 0; i < spans.length; i++){
       text += spans[i].innerHTML;
   }

   p.innerHTML = text;
}

Try this fiddle: http://jsfiddle.net/7gnyc/2/

share|improve this answer
function get_content(){
 var returnInnerHTML = document.getElementById('A').innerHTML + document.getElementById('B').innerHTML + document.getElementById('A').innerHTML;
 document.getElementById('txt').innerHTML = returnInnerHTML;
}

That should do it.

share|improve this answer

If you can use jquery then its simple

$("#txt").text()
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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