Editor.ClientEvents.Blur = "Editor_Blur"Editor.ClientEvents.Blur = "Editor_Blur";// The client event 'Blur' takes two parameters sender and e // sender is the object which is raising the event // e is the EventArgs //ID of the editor raising the event is "Editor" function Editor_Blur(sender, e) { alert("Editor lost focus!"); }