정미나닷컴

FCKeditor 폼 체크 본문

programming

FCKeditor 폼 체크

정미나 2010. 3. 9. 21:25
반응형

var oEditor = FCKeditorAPI.GetInstance('content');

if (oEditor.GetXHTML(true) == '') {

    alert('내용을 입력하세요');
    oEditor.Focus();
    return false;
}

반응형