I'm using TinyMCE to provide users the capability of simple text formatting (bold, italics, lists) on a textarea form field. Everthing is working properly except that in Internet Explorer (8 but I've read it happens on earlier versions), when users type a URL (e.g. www.google.com) it is automatically converted into an HTML link in the TinyMCE editor as they type. This does not happen in Firefox (3). How can I prevent IE from doing this?

I've initialized TinyMCE with the following:

tinyMCE.init({
    mode : "textareas",
    theme : "simple",
    convert_urls : false
 });

But I don't think convert_urls is intended to affect the behavior I'm describing: http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/convert_urls

I tried:

function myCustomURLConverter(url, node, on_save) {
    return url;
}

tinyMCE.init({
    mode : "textareas",
    theme : "simple",
    urlconverter_callback : "myCustomURLConverter"
 });

But similarly I think this is just a way to affect how/whether URLs are converted upon load/save, not to prevent them from being converted to links as users type: http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/urlconverter_callback

The issue I'm trying to fix is described in at least a couple of places: http://tinymce.moxiecode.com/punbb/viewtopic.php?id=2182&p=1 (third post, by tommya) http://drupal.org/node/149511

Has anyone seen this before or have any suggestions on how to fix it? The TinyMCE code-base is pretty big and difficult to trace so I was hoping someone could help me isolate the issue a bit.

link|improve this question

I assume you've tried this answer: tinymce.moxiecode.com/punbb/viewtopic.php?pid=15856#p15856 – Josh Stodola Mar 26 '09 at 21:20
Yea, I did see this. The code referenced in this post has changed since 2006 so unfortuantely it's not as useful as I'm sure it once was. That said, if I stepped through the JS in the file referenced I might be able to disable URL conversion. joelpittet has a shortcut in his answer below though. – jlpp Mar 27 '09 at 12:58
feedback

2 Answers

up vote 3 down vote accepted

Doesn't seem to be a way to disable that in IE. It seems to be a 'feature' and it occurs on FCKEditor too. A couple alternatives, remove the element out of the valid elements. http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/valid_elements

Or do a serverside tag parse to remove it.

I think this may be the 'feature' http://msdn.microsoft.com/en-us/library/aa769893(VS.85).aspx

And here maybe a hint in getting it to work, but it looked like ActiveX and VB so I got lost pretty quick in my experiment http://www.mindfrost82.com/showpost.php?p=1114381&postcount=2

link|improve this answer
I disabled anchor tags by allowing only simple formatting tags in the init: valid_elements : "strong/b,em/i,p,br,ul,ol,li,strike" This didn't prevent IE from doing the initial conversion but at least it prevents the link from being saved to the database. Thanks for the help Joel! – jlpp Mar 27 '09 at 13:01
feedback

Here's a working workaround, needing the paste plugin. In your TinyMCE init config, add :

paste_preprocess : function(pl, o) {
    // Strip <a> HTML tags from clipboard content (Happens on Internet Explorer)
    o.content = o.content.replace( /(\s[a-z]+=")<a\s[^>]+>([^<]+)<\/a>/gi, '$1$2' );
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.