Recent Posts
- (09/10) Fixing Warning: the ECDSA host key for 'github.com' differs from the key for the IP addressTAGS:Web Server Admin
- (12/26) CakePHP 3 - Getting List of Column Definitions from a Table (like schema())TAGS:CakephpCake3
- (09/14) Change Order of Loaded Behaviors in CakePHP 3TAGS:Cake3CakephpWeb ProgrammingPhp
- (05/29) CakePHP 3 - Accept JSON Header Only Working When Debug FalseTAGS:Web ProgrammingCakephpCake3
- (05/23) Remove All Events from Google Calendar (Reset Calendar)TAGS:Web ProgrammingPhp
- (11/08) Google Tag Manager (GTM) Not Firing Default PageView EventTAGS:Web ProgrammingJavascriptGoogle Tag Manager
- (10/13) In PHP, how do you get __toString() Magic Method Result without calling echo?TAGS:CakephpCake3Cakephp 13PhpWeb Programming
- (11/14) Getting output from shell_exec() at all timesTAGS:Web ProgrammingWeb Server Admin
Subscribe to my feed
MainelyDesign.com Blog
TinyMCE Doesn't Work in IE8
Posted on 07/24/2009 at 11:54 am by Kevin Wentworth
Viewed 26,754 times | 4 comments
I was training a client how to update their web site using Site Avenger when the strangest thing happened- no copy was showing in TinyMCE. No matter what I pasted the tiny editor would remain a nice, plain white. I didn't think to try typing directly into TinyMCE. No matter, a click on the HTML button to view the source revealed the content was in fact there, just not being shown within the TinyMCE editor.
Tell IE8 to Use Compatibility Mode
I found a link to a neat snippet of code that will tell IE8 to render the page in IE7 compatibility mode. It's a META tag, it's one line, and it's the fix. I put this at the top of my Site Avenger template:
- <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
I put it on every page just to be sure the IE7 rendering engine was being used... I don't have any reason to use IE8 at the moment. I hope this helps someone else out there.
Cheers,
-Kevin Wentworth
Tags for TinyMCE Doesn't Work in IE8
Hack | Internet Explorer | Ie | Site Avenger | Web Design
Comments for this Posting
Posted by Pim Kaptein
on 16/9/10
And what will you do when IE7 phases out, just like IE6 is doing slowly??
Posted by Kevin Wentworth
on 16/9/10
@Pim: I only use TinyMCE on back-end systems... I guess I would just up the minimum browser requirements for the back-end. By the time IE7 fades out of relevancy, I'm sure MoxieCode will have something better anyway.
Sorry, comments are closed for this posting.
Please Email Kevin if you have any questions. Thanks!
Posted by Jaydee
on 30/4/10
Nice, saved me hours of work. Tnx!