I'm using a custom file browser, set up as follows:
Clicking a link in my custom browser outputs the following code:
This populates the 'URL' portion of the link browser with the expected content (/index.htm). However, when I save the page, my link looks like this:
What am I doing wrong?
<script type="text/javascript"> CKEDITOR.replace('ContentBody', { filebrowserBrowseUrl : '/test_lb.php', filebrowserWindowWidth : 800, filebrowserWindowHeight : 500 }); </script>
Clicking a link in my custom browser outputs the following code:
<html> <body> <script type="text/javascript"> window.opener.CKEDITOR.tools.callFunction(2,'/index.htm',''); </script> </body> </html>
This populates the 'URL' portion of the link browser with the expected content (/index.htm). However, when I save the page, my link looks like this:
<a href="javascript:void(0)/*260*/" _cke_saved_href="/index.htm">test link</a>
What am I doing wrong?