If you do not want to have, <html> , <head> </head> </head> , <body> </body> tags in CKEditor's source code then you must set Full Page as false in the configuration javaScript file.
Go to CKEditor folder and open config.js file, Add the following line config.fullPage = false;
/**
* @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config ) {
config.fullPage = false;
};
Now when you load CKEditor you would find that there are no HTML, head or body tags!
More Posts related to Html,
- remove div vertical scroll
- Create HTML button that looks like a href hyperlink
- Comprehensive 256 Ascii code table with Html Hex IBM Microsoft Key
- HTML5 HELLO WORLD Example
- Get HTML table td, tr or th inner content value with id or name attribute
- Adding Sub Headings to Bootstrap Header tags
- What is the doctype for HTML5?
- Chessboard with pieces using pure HTML and CSS
- Hyperlink in html (anchor tag) without a underline
- W3 : character data is not allowed here html validation error
- Fibonacci series from 1 to 500 table
- 9 Border to DIV Element in HTML Examples
- How to add multiple spaces between html page text
- How to turn off autocomplete in input fields in HTML Form
- Default speed of Marquee tag : SCROLLAMOUNT
- How to word wrap in HTML
- Force convert HTML text input to upper case
- HTML5 CSS3 Color Codes List
- How to remove old 404 pages ulrs from Google crawler
- reCaptcha Verification expired. Check the checkbox again
- All directional arrows codes for HTML
- Align html element at the center of page vertically and horizontally
- How to make a div tag clickable
- Remove Html head and body tags from ckeditor source
- Auto Refresh Webpage after every x Second or Minute using Meta Tag?
More Posts:
- Move Copy Migrate SharePoint OneDrive files folders to different site collection location - SharePoint
- import servlet API to eclipse project (javax.servlet cannot be resolved error) - Java
- [Fix] Connect to Minecraft Remote Connect URL via https //aka.ms/remoteconnect - Microsoft
- Android Studio Error: Default Activity not found - Android-Studio
- [Solution] fatal: not a git repository (or any of the parent directories): .git - Git
- How to Configure GitHub with Eclipse IDE in 2023 - Eclipse
- Calculate Volume of Ellipsoid - C-Program
- Validate email address in Python using regular expression (regex) - Python