Hi, I have a problem:
My Silverlight Applicacion is in hidden div when start the browser application. And then i want change this <object> (Silverlight application), to other div, that are in other position in the DOM three.
I tried to do with this code, and it works, but the problem is that don't move the original object, do a copy because the Silverlight application begin of start, and don't save the changes that i have realised in Silverlight application.
function ChageDiv()
{
var hiddenDiv= document.getElementById("hiddenDiv");
var appSilverlight = hiddenDiv.firstChild;
var otherDiv= document.getElementById("otherDiv");
otherDiv
.appendChild(appSilverlight);
}
Any idea for moving with javascript nodes of type object holding the reference of memory?
Thanks.