This message is occuring when I try and click the rick text editor button in a content editor webpart. This is the function that is al line 7307. The bold line is 7307.
function RTE2_GetControlWrapper(elem)
{
var currentElem=elem;
while(currentElem !=null && (currentElem.id==undefined || currentElem.id.indexOf("ControlWrapper")==-1))
{
currentElem=currentElem.parentNode;
}
if (currentElem==null) currentElem=elem;
return currentElem;
}
Thomas Chovanec