You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
568tools/tools/NKeditor/test/remote.html

20 lines
526 B

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>KindEditor Test</title>
<script src="http://www.kindsoft.net/ke4/kindeditor-all-min.js"></script>
<script>
//document.domain = 'domain.com';
KindEditor.basePath = 'http://domain.com/kindeditor/trunk/';
KindEditor.ready(function(K) {
K.create('#editor1');
});
</script>
</head>
<body>
<h1>KindEditor Test</h1>
<textarea id="editor1" name="editor1" cols="100" rows="20" style="width:700px;height:300px;"></textarea>
</body>
</html>