in CKEditor : as per my requirement, i just want to select the element by its Id and scroll to that position.
i've written code which is working fine in FF but i am not getting solution for IE.
bellow is the code for FF :
Ele = EditorInstance.document.getById(Id);
EditorInstance.getSelection().selectElement(Ele);
Ele.scrollIntoView();