I have observed an undesirable behaviour in Chrome that occurs when one joins two <p>
's by deleting the separation between them. Although the <p>
tags are joined properly, Chrome wraps the right-most <p>
tag's content with a <span>
.
Edit: this happens for all block elements, not just p
tags.
Example:
For example, when the separating </p><p>
are deleted from the following block:
<div contenteditable="true"><p>p one.</p><p>p two.</p></div>
It becomes:
<div contenteditable="true"><p>p one.<span style="font-size: 16px; line-height: 1.44;">p two.</span></p>
Example in a fiddle: Chrome wrapping contents of joined <p>
with a <span>
.
Question:
Is there an easy way to prevent chrome from doing this? It results in horrible markup that I'd like very much to be rid of.
The best way I found so far is to listen to DOMNodeInserted and check the tagName. If it is a span, you can remove the tag and but leave the contents. This also keeps the cursor at the correct place.
I've added a boolean 'AutoFix' so you can disable the automatic dom changes when you do need to insert a span, since this event fires on any dom change. E.g. if you have a toolbar that allows the user to insert something like <span class="highlight">...</span>.
The code has no side effects in IE or FireFox as far as I can see.
There is a way but you need to pro-actively set a few styles. The idea is to tell Chrome that the styles are already taken care of, so it doesn't need to add SPAN to meet the styles requirement. basically, you need to add the chrome added styles to a span class under your contenteditable div ( see example below).
Edited fiddle
For you example:
.edit p, span
class in the styleThis becomes:
And the DIV:
Note that you normally don't need the
font-size: 16px;
. I needed to add this one because fiddle defines some font size in contenteditable. On a standalone page I didn't need it.You need to apply this Chrome 'patch' to any elements where it happens (so if you need UL, OL... then add what is needed following my example logic above)
Here is my take on removing the extra spans
The CSS is influencing how the markup is made inside contenteditable:
div, pre { border: 1px solid gray; padding: 10px; line-height: 1.44; }
Delete the line-height line and the problem doesn't occur any more.
There are in general several bugs with contenteditable related to default styling : How to avoid WebKit contentEditable copy-paste resulting in unwanted CSS?
EDIT JsFiddle IS indirectly influencing this (tinkerbin behaves differently) because of its' CSS (normalize.css). Try this:
<p>
font-size
declarations in the CSS stack - including your line-heightSolution 1 : Use classes and id's.
Don't declare font-size for
p
ordiv
but forp.main-content
, or more simply,.main-content
. If the font-size of your elements inside contenteditable is coming from the browsers' internal default CSS then Chrome won't add extra markup/inline styling.Solution 2 : Use a Sanitizer.
I'd personally go with #1 as it's never a good practice to specify font-sizes and typo in so generic tags.
I know it is not really an answer to solve it, but a hint how it could be fixed (but it is to long to be a comment to Petah question how i would solve it)
in general you would check when such bugs could happen. for the case of the
span
creation you would listen to allkeydown
andkeypress
events and check if the key is the backspace/delete key or for every key that inserts chars if it is a real selection.if this is the case then you need to check the current selection (either the position of the insert mark, or the real selection) then you know which is the next following text-element or node. then you need to check the in the next following
keypress
andkeyup
if there is aspan
created directly after your insert mark. depending on the browser bug you need some further checking. if there is one create unwrap its content again. additionaleMutation
events and helper attributes could be used.But i need to say that i gave up in doing this myself and switched over to ckeditor 4. most of the it's features i don't need and it is a really big library. but cause of the huge number of such bugs i did not see another solution for me.
EDIT Here an update of the js fiddle that shows the idea with a Mutable event: http://jsfiddle.net/THPmr/6/
But that is not bullet proofed, it is just to show how it could be achived ( only tested in chrome 27.0.1422.0, and probably would not work if more then one text element is contained in the second
p
)Please see the answers here: https://stackoverflow.com/a/24494280/2615633 To fix the problem you may just use this plugin: jquery.chromeinsertfix