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
|
Append text in already appended div id "txt". i have use appendChild() function,added "Testing This is" But i need "This is Testing"
Before
After
Help me
| |||
|
feedback
|
|
You identified the answer in the tags you put on the question - take a look at the
will give you the results you want. | |||
|
feedback
|
|
you can do it like this:
Hope that helps. | |||
|
feedback
|
or you can befit from the chaining
| |||
|
feedback
|