- el "theme" simple o advanced hace a la carga de ficheros livianos / pesados?
Necesito hacer algo así como una wiki, con múltiples editores siempre y cuando se apriete el boton editar. Es decir, originalmente no tengo textareas. Pero lo resolví con un evento click + el metodo .wrap.
- TyniMCE no tenía contemplado esto para hacerlo más facil?
Cita:
links = $("a.edition");
$.each(links,function(){
$(this).click(function(){
div = $(this).closest("div");
div.wrapInner('<textarea cols="70" rows="60"></textarea>');
id = div.attr("id");
initEditor(id);
div.focus();
return false;
});
});
$.each(links,function(){
$(this).click(function(){
div = $(this).closest("div");
div.wrapInner('<textarea cols="70" rows="60"></textarea>');
id = div.attr("id");
initEditor(id);
div.focus();
return false;
});
});