Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 02-17-2011, 02:01 PM   PM User | #1
kfir91
New to the CF scene

 
Join Date: Feb 2011
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
kfir91 is an unknown quantity at this point
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);
	}
}
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 ...
kfir91 is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 10:07 AM.


Advertisement
Log in to turn off these ads.