2
Vote

Heading tags does not work in IE 8

description

The heading tags (H1..H6) does not work in IE 8. Nothing happens when you try to change the font.
In Firefox and Chrome it seems to work properly.

comments

holinhe wrote Jan 19, 2010 at 6:00 AM

change function:

heading: function(h) {
 this.formatBlock($.browser.msie ? "Heading " + h : "h" + h);
},


to:

heading: function(h) {
this.formatBlock($.browser.msie ? "<h" + h + ">" : "h" + h);
},

crpietschmann wrote Aug 4, 2012 at 3:57 AM

** Closed by crpietschmann 8/3/2012 8:57 PM

crpietschmann wrote Aug 4, 2012 at 3:57 AM