Skipping to an element within the CKEditor by ID and setting the cursor focus within that element.
With the element in view, you'll attempt to insert the cursor at the beginning of the element using a Range. Firefox will actually insert the cursor for you but Chrome wont, so the Range step is necessary.
var element = evt.editor.document.getById('someHeading');
var range;
if(element) {
element.scrollIntoView();
// Thank you S/O
// http://stackoverflow.com/questions/16835365/set-cursor-to-specific-position-in-ckeditor
range = editor.createRange();
range.setStart(element, 0);
range.setEnd(element, 0);
editor.getSelection().selectRanges([range]);
}