Append text in already appended div id "txt". i have use appendChild() function,added "Testing This is" But i need "This is Testing"

document.getElementById("txt").appendChild("This is");

Before

Testing

After

This is Testing

Help me

link|improve this question

38% accept rate
feedback

3 Answers

You identified the answer in the tags you put on the question - take a look at the .prepend() jQuery function. Rather than adding child nodes to the element at the end, it adds them at the beginning. Assuming that #txt is an element that originally contains only the text node 'Testing', then this code:

$('#txt').prepend('This is ');

will give you the results you want.

Working DEMO

link|improve this answer
feedback

you can do it like this:

var old_string = document.getElementById("div_id").innerHTML;
var new_string = "is Testing";
document.getElementById("div_id").innerHTML = new_string + " " + old_string;

Hope that helps.

link|improve this answer
feedback
$("#txt").before("before text");
$("#txt").after("after text");

DEMO

or you can befit from the chaining

$("#txt").before("before ").after("after ");
link|improve this answer
As same div "txt" load image append before. How to append image – jey Feb 9 at 10:17
feedback

Your Answer

 
or
required, but never shown

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