Hyperlinks don't work when applying inline editing to a div tag.
You can even try it on this online DEMO.
- Insert Hyperlink
- Disable inline edit dialog by clicking somewhere on the page
- Try to click on created hyperlink. Hyperlink hand cursor doesn't appear as you normal would expect when pressing link in a webpage.
Destroying CKeditor instance will also not resolve this problem.
Is this normal behavior ?
contenteditable="true"attribute (inspect the code). Browsers assume that such element is for creating contents but not for navigation, unless you remove the attribute. - oleq$('#editable').attr('contenteditable', 'false');would be better. - zessxvar element = CKEDITOR.instances.instance.element;, destroy editor:CKEDITOR.instances.instance.destroy();, remove attribute:element.removeAttribute( 'contenteditable' );- oleq