Sos un genio!
sabia que se podia pero nunca lo iba a descubrir.
lo siguiente es hacer lo que dice el alert: limpiar de html el texarea
entiendo que deberia ser algo asi:
Código Javascript
:
Ver original<script>
$("#editor_ta").attr("value",strip_tags($("#editor_ta")[0].value));
function strip_tags(input, allowed) {
allowed = (((allowed || '') + '')
.toLowerCase()
.match(/<[a-z][a-z0-9]*>/g) || [])
.join(''); // making sure the allowed arg is a string containing only tags in lowercase (<a><b><c>)
var tags = /<\/?([a-z][a-z0-9]*)\b[^>]*>/gi,
commentsAndPhpTags = /<!--[\s\S]*?-->|<\?(?:php)?[\s\S]*?\?>/gi;
return input.replace(commentsAndPhpTags, '')
.replace(tags, function($0, $1) {
return allowed.indexOf('<' + $1.toLowerCase() + '>') > -1 ? $0 : '';
});
}
</script>
si lo hago en el firebug veo que me limpia el el texto y me devuelve una cadena sin tags html,
pero no se actualiza el CLEDITOR
como podria resolver esto?