<div id='container'>
This is some text
<span> more text </span>
</div>
How can I update only the text section ("This is some text") while not affecting the "span" ?
How can I update only the text section ("This is some text") while not affecting the "span" ? |
|||||||||||
|
|
pure javascript solution
or Jquery
|
|||||||||||
|
Works in IE7 (that's what I got). You may need to adjust the nodeName check for different browsers, but the overall concept is the same: don't check for |
|||
|
|
|
it would be easiest to format it as such with a paragraph tag and use javascript to just change the innerHTML of the paragraph tag. That is the easiest and shortest way to change only that text.
|
||||
|
|