Hi all,
I'm using google chrome as client of my web application.
If I open it with mozilla or ie it won't work 100% all application features.
Does anybody know the differences concerning iframes and document selection for example in the following lines of code:
self.parent.iframe[i].getSelection().getRangeAt(0);
map = document.createElement("map");
map.innerHTML=self.parent.iframes[i].getSelection();
map.appendChild(selectionContents);
map.setAttribute('id','1');
range.insertNode(map);
parent = selection.getRangeAt(0).commonAncestorContainer;
parent.outerHTML=parent.innerHTML;
regards