Hello,
I am having trouble trying to understand the CKEditor documentation, and just wanted a really basic example of a custom file browser page.
So for example if I had the following;
<script type="text/javascript"> //<![CDATA[ CKEDITOR.replace( 'tePgContent', { filebrowserBrowseUrl : 'getLinks.html', filebrowserImageBrowseUrl : 'getImages.html', }); //]]> </script>
What would a basic static getLinks.html file look like in order to have the following two clickable links on it, that would write the clicked link back to the editor?
I'm interested in a full HTML example for getLinks.html please - not a reference to window.opener.CKEDITOR.tools.callFunction in the documentation because this is where I am stuck
getLinks.html
<a href="www.google.com">Google</a> <a href="www.microsoft.com">Microsoft</a>
Re: CKEditor Custom File Browser
Full page example - easy.
Re: CKEditor Custom File Browser
Thank you for the most helpful example.
How would I be able modify this so that the Link text is also set, not just the link itself?
Thanks again for your help.
Re: CKEditor Custom File Browser