Reputation: 3439
I have this code inside the contents of my TinyMCE Editor:
<input value="value">
<button>Text</button>
But TinyMCE will not allow me to edit the Text of the button or the input value. I also put together a minimal example here in the TinyMCE fiddle.
How can I allow these values to be edited?
Upvotes: 2
Views: 876
Reputation: 969
Here is fix for Chrome, in Opera sill not working, Safari not tested yet
-webkit-user-select: inherit;
http://fiddle.tinymce.com/EBeaab/2
Upvotes: 3