Ciao a tutti, ho un problema con un tinymce applicato ad un input text.
Praticamente dovrei dirgli che il numero massimo di caratteri da inserire è 50.
di seguito il tiny che sto utilizzando
codice:
tinyMCE.init({
// mode : "textareas",
mode : "exact",
elements : "titolo_argomento",
theme : "advanced",
// Theme options theme_advanced_buttons1 : "", theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "",
width : '100%',
height : '10',
forced_root_block : false,
force_p_newlines : false,
remove_linebreaks : false,
force_br_newlines : true,
remove_trailing_nbsp : false,
verify_html : false, });
Come posso risolvere?
Grazie