When using PasteFromWord in older versions of FCK paragraphs were rendered as P tags (correct in my view). The current version renders paragraphs as DIV tags which is really hard to deal with.
Does nayone know what the last version of FCK was that used P tags? Or deos anyone have a fix for the current version.
Regards
John
Does nayone know what the last version of FCK was that used P tags? Or deos anyone have a fix for the current version.
Regards
John
Re: Paste from word paragraphs
// Transform <P> to <DIV>
//var re = new RegExp( '(<P)([^>]*>.*?)(<\/P>)', 'gi' ) ; // Different because of a IE 5.0 error
//html = html.replace( re, '<div$2<\/div>' ) ;
works for me
jc
Re: Paste from word paragraphs