I have a form with multiple TinyMCE editors. Some of the editors are advance and some are simple editors. I have used jquery validation plugin for validation in client-side. I have been validating single TinyMCE editor by adding following code.
$('#submit').click(function() {
var content = tinyMCE.activeEditor.getContent(); // get the content
$('#description').val(content); // put it in the textarea
});
But now i am supposed to validate all editors, any idea??
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…