You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@timdown will clearly explain about my functionality needed.
I have a one contenteditable div element. If a user presses a Enter key, the the cotnents from the caret position to the end of the element, is extracted and inserted as separated node below of that DIV.
Also, need to get focus on inserted node element. But the caret is in-between the two DIVS.
Find my code below:
Here Range = rangy.getSelection();
RangeSel = Range.getRangeAt(0);
`
const paraSplit = (Range, RangeSel) => {
var clone_range = RangeSel.cloneRange();
var p = clone_range.commonAncestorContainer;
while (p && p.nodeType !== 1) {
p = p.parentNode;
}
if (p) {
// Place the end of the range after the paragraph
clone_range.setEndAfter(p);
// Extract the contents of the paragraph after the caret into a fragment
var contentAfterRangeStart = clone_range.extractContents();
// Collapse the range immediately after the paragraph
clone_range.collapseAfter(p);
// Insert the content
clone_range.insertNode(contentAfterRangeStart);
console.log(p.firstChild)
// Move the caret to the insertion point
clone_range.collapseAfter(p);
Range.setSingleRange(clone_range);
Range.setStart(RangeSel.startContainer, RangeSel.startOffset);
return true;
}
};
`
This function gets triggered on keypressevent using Enter key.
`
const ParaSplitHandler = async (e) => {
try {
if (e.key === "Enter") {
//Initializing range selections
let Range = await rangy.getSelection();
let RangeSel = Range.getRangeAt(0);
//ParaSplit on Enter event
paraSplit(Range, RangeSel);
}
} catch (error) {
console.error(error);
}
};
ParaSplitHandler(e)}>
loremEpsum jContrary to popular belief, Lorem Ipsum is not simply
random text.It has roots in a piece of classical Latin literature from
</div>
`
The text was updated successfully, but these errors were encountered:
@timdown will clearly explain about my functionality needed.
I have a one contenteditable div element. If a user presses a Enter key, the the cotnents from the caret position to the end of the element, is extracted and inserted as separated node below of that DIV.
Also, need to get focus on inserted node element. But the caret is in-between the two DIVS.
Find my code below:
Here Range = rangy.getSelection();
RangeSel = Range.getRangeAt(0);
`
const paraSplit = (Range, RangeSel) => {
var clone_range = RangeSel.cloneRange();
var p = clone_range.commonAncestorContainer;
while (p && p.nodeType !== 1) {
p = p.parentNode;
}
if (p) {
// Place the end of the range after the paragraph
clone_range.setEndAfter(p);
}
};
`
This function gets triggered on keypressevent using Enter key.
`
const ParaSplitHandler = async (e) => {
try {
if (e.key === "Enter") {
//Initializing range selections
let Range = await rangy.getSelection();
let RangeSel = Range.getRangeAt(0);
//ParaSplit on Enter event
paraSplit(Range, RangeSel);
};
The text was updated successfully, but these errors were encountered: