jQuery Breaks Wysiwyg Editor in Internet Explorer?

Question by Jeff: jQuery Breaks Wysiwyg Editor in Internet Explorer?
Just at a complete loss, styling this exactly the way I wanted took quite some time and I now discover I’m having some serious issues within IE.

http://youhatethatjob.com/?page_id=93

Any idea whatsoever on how to prevent that squishing from occurring?
Figured it out. In case anyone runs into a similar issue with nicEdit, just open up the nicEdit.js file and switch the following line:

({width:(parseInt(B.getStyle(“width”))||B.clientWidth)+”px”})

to this:

({width:(B.clientWidth)||parseInt(B.getStyle(“width”))+”px”})

Best answer:

Answer by Rorysauce
Use clientWidth instead of getStyle(“width”) I’ve had to fix that before

Know better? Leave your own answer in the comments!

About Admin