Ashish Mehra
Ashish Mehra

Reputation: 115

ckeditor scrollIntoView to a div element within the editor

I have a navigation menu out side ckeditor and i want to navigate within the editor as all my element in editor have ids

scrollIntoView

how does this work

any example will be good

Upvotes: 1

Views: 3276

Answers (2)

Yeray Cabello
Yeray Cabello

Reputation: 421

The problem is that you are not actually putting the scope inside the CKEDITOR instance. In order to get a variable pointing to the document, do this:

var ckeditorDocument = CKEDITOR.instances.[instancename].document.$;

Upvotes: 0

Pekka
Pekka

Reputation: 449753

The information in this question (asked by myself some months ago) should get you started. The accepted answer outlines how to access elements inside the CKEditor document programmatically from JQUery.

It should be possible to fetch the desired element, and do a ScrollIntoView based on that.

This might already work (untested):

var documentWrapper = editorname.document; // replace by your CKEDitor instance ID
var documentNode = documentWrapper.$; // or documentWrapper['$'] ;
documentNode.getElementById("id").scrollIntoView(); // Insert your element ID there

Upvotes: 2

Related Questions