/    Sign up×
Community /Pin to ProfileBookmark

wysiwyg help

i have this code

[CODE]function blockformat(tag) {
if(document.selection){
var Editor = document.getElementById(‘iView’).contentWindow.document;
var range = Editor.selection.createRange();
if (range.pasteHTML) {
var content=Editor.selection.createRange().htmlText;
content1=”<“+tag+”>”+content+”</”+tag+”>”;
range.pasteHTML(content1);
}
} else if (window.getSelection) {
var Editor = document.getElementById(‘iView’).contentWindow;
var range = Editor.getSelection().getRangeAt(0);
content1=”<“+tag+”>”+range+”</”+tag+”>”;
getIFrameDocument(‘iView’).execCommand(‘insertHTML’,false, content1);
}
}[/CODE]

the code get tag like “div” and insert into my wysiwyg the text that marked between the got tags.

to example
blockformat(‘div’);

not in my wysiwyg iframe there is ” <div>blabla</div>”
now i want that if i clicked again
the tags are remove
like a
execcommand
if i click bold one time its make the text bold and second time its remove the bold

tnx …

to post a comment
JavaScript

0Be the first to comment 😎

×

Success!

Help @kfir91 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.18,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...