Anns,
>>Could this be something to do with the events loading in the wrong order - perhaps the CuteEditor isn't fully loaded when the window.onload event is picked up?
Yes, you are correct.
Try the following code:
<body onload="setTimeout(CE_attachEvent,1000);">
function CE_attachEvent()
{
// get the cute editor instance
var editor1 = document.getElementById('<%=Editor1.ClientID%>');
//Get the editor content
var editdoc=editor1.GetDocument();
// attach Event
if(editdoc.attachEvent)
editdoc.attachEvent('onkeypress',HandleChange);
else if(editdoc.addEventListener)
editdoc.addEventListener('keypress',HandleChange,true);
}
Keep me posted
asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
asp wysiwyg html editor: http://cutesoft.net/ASP
asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
Live Support: http://cutesoft.net/live-support/default.aspx