I have a java script function which fires on onblur() event of the body.
function start() {
var el = document.getElementById('divWarning');
el.style.visibility = "visible";
}
Fires on:
<body onblur="start()">
It's working fine on every page. Except the one in which I have included a CKEditor.
<CKEditor:CKEditorControl ID="txtDescriptiveAnswer" runat="server" Width="75%" UIColor="#54b2ff" BorderColor="#007cdf" BorderWidth="2px" Toolbar="Source|-|Preview
Bold|Italic|Underline|Strike|-|Subscript|Superscript
JustifyLeft|JustifyCenter|JustifyRight|JustifyBlock
NumberedList|BulletedList|-|Outdent|Indent|Blockquote|Styles|Format|Font|FontSize|TextColor|BGColor|Maximize" BasePath="../ckeditor">
</CKEditor:CKEditorControl>
Every time I click on CKeditor to write somthing, The onblur event fires up. I know that CkEditor have an IFrame which is I think making the problem. But I don't know how to skip the blur event for CkEditor only.
Please help.
Thanks.