I have HTML page with some HTML element with ID="logo". I need to create JS script (with no external libs calls) that will overwrite that html element with other HTML element like "<div id=logo> stuff inside </div>".
|
|
||||
|
|
Most of the time, it's just the content you want to replace, not the element itself. If you actually replace the element, you'll find that event handlers attached to it are no longer attached (because they were attached to the old one). Replacing its contentReplacing the element's content is easy:
The Replacing the element iselfActually replacing the element itself is a little harder, but not much:
Notes on
|
I realized my mistake a second after posting...so deleted it...but you beat me to downvoting it...how unfortunate...good answer though. Never thought of doing this myself. Thanks. – Mussnoon Mar 21 '10 at 14:01 |
|
@Muhammad: You're assuming I was the one downvoting; just because i commented it doesn't mean I downvoted. Normally, I'd comment, then downvote several minutes later if the answer hadn't been corrected or removed. But it happens you're right on this occasion -- for some reason I downvoted right away. I don't know why (and can't undo it now, as the answer's been deleted). – T.J. Crowder Mar 21 '10 at 14:03 |
|
I strongly encourage you to 'actually replace the element itself'. Using innerHTML is convenient sometimes, but can also be a vulnerability other times. So if this is your first DOM-adventure, I encourage you to do it the long way at least this once. – Richard JP Le Guen Mar 21 '10 at 14:38 |
|
Also take note that in IE6, there are certain elements that cannot be modified with innerHTML, most notably tables. – K. Norbert Mar 21 '10 at 14:47 |
|
@WishCow: I did note that in my answer ("There are a number of wrinkles...") – T.J. Crowder Mar 21 '10 at 14:48 |
|
Do you really need to 'replace' the element or can you just toggle its visibility? This is a technique that's much simpler and will be more efficient. Most importantly it keeps the content (html) separated from the behavior (javascript).
see T.J.'s answer if you actually want to replace the element. |
||||
|
|
|
I'd suggest just taking a look at one of the libraries' implementations: Here's jQuery's and here's Prototype's. |
|||||||||||
|