I'm trying to figure out how I can wrap another HTML tag within when a users click on the ordered list button in TinyMCE.

Example:

<ol>
    <li>something</li>
</ol>

Will become:

<ol>
    <li><span>something</span></li>
</ol>

The reason is that I need the text in the span to different from the numbered bullet. I found a wrapInner() jQuery solution but it doesn't work because I need it to show up in the editor.

I am running the jQuery version of TinyMCE.

Thanks in advance for the help.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

You could write your own plugin which could replace the ordered list plugin. All you need to do is to get the code from the recent plugin and modify it slighty to insert spans also. That's it.

link|improve this answer
I was hoping to avoid that, but I guess I can do that no longer. Thanks for your help. It is much appreciated. – SalMoriarty Apr 8 '11 at 16:22
feedback

Your Answer

 
or
required, but never shown

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