How to append this HTML string
var str = '<p>Just some <span>text</span> here</p>';
to the DIV with the ID 'test' which is in the DOM?
(Btw div.innerHTML += str; is not acceptable.)
|
How to append this HTML string
to the DIV with the ID (Btw |
|||
|
|
|
Use insertAdjacentHTML if it's available, otherwise use some sort of fallback. insertAdjacentHTML will be supported in Firefox 8, and is also supported in Safari 4, Chrome, IE and Opera, according to https://developer.mozilla.org/en/DOM/element.insertAdjacentHTML
Live demo: http://jsfiddle.net/euQ5n/ |
|||||||||||
|
|
Is this acceptable?
|
|||||||||||||||||
|
|
The right way is using If your |
||||
|
|
|
Why is that not acceptable?
would be the textbook way of doing it. |
|||||||||||||||
|
|
The idea is to use
This avoids wiping out any event handlers on |
|||
|
|