I have a div that needs to be moved from one place to another in the DOM. So at the moment I am doing it like so:
flex.utils.get('oPopup_About').appendChild(flex.utils.get('oUpdater_About'));
But, IE, being, well, IE, it doesn’t work. It works all other browsers, just not in IE.
I need to do it this way as the element (div) ‘oUpdater_About’ needs to be reused as it is populated over and over.
So i just need to be able to move the div around the DOM, appendChild will let this happen in all browsers, but, IE.
Thanks in advance!
You have to remove the node first, before you can append it anywhere else.
One node cannot be at two places at the same time.