function insertFile(value){ var oEditor = CKEDITOR.instances.content; if ( oEditor.mode == 'wysiwyg' ) { // Insert the desired HTML. oEditor.insertHtml( "<a href='upload_file/"+value+"'>"+value+"</a>" ); } else alert( 'You must be on WYSIWYG mode!' ); } function insertImage(value){ var oEditor = CKEDITOR.instances.content; if ( oEditor.mode == 'wysiwyg' ) { // Insert the desired HTML. oEditor.insertHtml( "<img src='upload_image/"+value+"' title='"+value+"'>" ); } else alert( 'You must be on WYSIWYG mode!' ); }