hi all
i need to embed media player in a page but, with xhtml activated, if i put in the editor, in the source, object element and embed tag inside this tag is cleaned from fckeditor
can you know how can i solve my problem?
i need to embed media player in a page but, with xhtml activated, if i put in the editor, in the source, object element and embed tag inside this tag is cleaned from fckeditor
can you know how can i solve my problem?
RE: embed element
I think there's something in fck_actions that looks for specific tags and removes or replaces them.
RE: embed element
RE: embed element
{
// Remove all SPAN tags
html = html.replace(/<\/?SPAN[^>]*>/gi, "" );
// Remove Class attributes
html = html.replace(/<(\w[^>]*) class=([^ |>]*)([^>]*)/gi, "<$1$3") ;
// Remove Style attributes
html = html.replace(/<(\w[^>]*) style="([^"]*)"([^>]*)/gi, "<$1$3") ;
// Remove Lang attributes
html = html.replace(/<(\w[^>]*) lang=([^ |>]*)([^>]*)/gi, "<$1$3") ;
// Remove XML elements and declarations
html = html.replace(/<\\?\?xml[^>]*>/gi, "") ;
// Remove Tags with XML namespace declarations: <o:p></o:p>
html = html.replace(/<\/?\w+:[^>]*>/gi, "") ;
// Replace the
html = html.replace(/ /, " " );
// 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>" ) ;
insertHtml( html ) ;
}