Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TinyMCE or other WYSIWYG Editors for Mobile Devices?

Is it possible to use a WYSIWYG text editor (especially TinyMCE) for a mobile device or is that not supported yet? Will it ever be supported?

like image 405
Kamil Sindi Avatar asked Nov 18 '11 00:11

Kamil Sindi


2 Answers

This weblink Compatibility table for support of contenteditable attribute in desktop and mobile browsers. will give you a clue about this issue.

I was looking for the same thing today, so I thought to share this link with you.

like image 141
George D. Avatar answered Nov 06 '22 01:11

George D.


It is possible to use it on a mobile device, but the javascript functionality in those browsers is limited, so not everything is possible (own plugins and several interactions with own CMS i.e.).

Keep in mind too that heavy js-usage on a page will slow down all its functionality on mobile devices cause the system is not as powerfull as a personal computer. I had the problem that the js overhead of a CMS delayed js-functionality in the browser so that clicking checkboxes and selecting input fields was almost not usable.

It might be necessary to redisign the whole CMS around such an editor to run fast enough to make it work.

like image 25
Thariama Avatar answered Nov 06 '22 01:11

Thariama