我使用jquery 内联验证保护我的表单。在 textarea 我有 tinyMCE 编辑器。现在我需要检查我的表单验证空文本区域。有什么办法可以解决这个问题?
微小的MCE:
tinyMCE.init({ mode : "textareas", theme : "advanced",directionality : "rtl",theme_advanced_buttons3 : "", theme_advanced_toolbar_location : "bottom",height:'100%',theme_advanced_toolbar_align : "left",});
HTML 和验证:( set class="validate[required]" and id="description")
<textarea id="description" class="validate[required]" name="description" style="width:100%" ></textarea>