1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="skin/style.css" />
<link rel="icon" type="image/png" href="favicon.png" />
<script src="nicEdit.js" type="text/javascript"></script>
<script type="text/javascript">
bkLib.onDomLoaded(function() {
new nicEditor({ iconsPath : 'nicEditorIcons.gif',
buttonList : ['bold','italic','underline','left','center','right','justify','ol','ul','subscript','superscript','strikethrough','removeformat','indent','outdent','hr','image','upload','forecolor','bgcolor','link','unlink','fontFormat','xhtml']}).panelInstance('area4');
});
</script>
<title>Test</title>
</head>
<body>
<textarea cols="83" id="area4">HTML <b>content</b> <i>default</i> in textarea</textarea>
</body>
</html> |