getSelection in iFrame
getSelection in iFrame
Hi all,
For my project, I want do a text WYSIWYG editor (like this one).
I have div with contentEditable in iFrame :
- <div id="editor" class="K_editor_editing">
- <div class="K_editor_link"><span class="K_editor_linkBold">[b]</span></div>
- <iframe name="frameName_editor" id="frame_editor" src="./myEditor/iframe.php" class="K_editor_iframe"></iframe>
- </div>
With this code in iFrame :
- <html>
- <head>
- <style>
- </style>
- </head>
- <body>
- <div id="contentIframe" contentEditable="true" >
- Content content <br/> content <br/> content
- </div>
- </body>
- </html>
When user click on link (for exemple : bold), I want get selection's user for add balide before and after that..
I have do lots of test but it's impossible.
How can I do ?
Thanks all
Ps: Sorry for my english ! =s