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.
49 lines
1.7 KiB
49 lines
1.7 KiB
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<title>Cross-Browser Rich Text Editor</title>
|
|
<meta http-equiv="Content-Type"
|
|
content="text/html; charset=ISO-8859-1">
|
|
<meta name="PageURL" content="http://www.kevinroth.com/rte/demo.htm">
|
|
<meta name="PageTitle" content="Cross-Browser Rich Text Editor">
|
|
<script language="JavaScript" type="text/javascript"
|
|
src="html2xhtml.js"></script><!-- To decrease bandwidth, use richtext_compressed.js instead of richtext.js //-->
|
|
<script language="JavaScript" type="text/javascript"
|
|
src="richtext_compressed.js"></script>
|
|
</head>
|
|
<body>
|
|
<br>
|
|
<!-- START Demo Code -->
|
|
<form name="RTEDemo" action="demo.htm" method="post"
|
|
onsubmit="return submitForm();">
|
|
<script language="JavaScript" type="text/javascript">
|
|
<!--
|
|
function submitForm() {
|
|
//make sure hidden and iframe values are in sync before submitting form
|
|
//to sync only 1 rte, use updateRTE(rte)
|
|
//to sync all rtes, use updateRTEs
|
|
updateRTE('rte1');
|
|
//updateRTEs();
|
|
alert("rte1 = " + document.RTEDemo.rte1.value);
|
|
|
|
//change the following line to true to submit form
|
|
return false;
|
|
}
|
|
|
|
//Usage: initRTE(imagesPath, includesPath, cssFile, genXHTML)
|
|
initRTE("images/", "", "", true);
|
|
//-->
|
|
</script>
|
|
<noscript><p><b>Javascript must be enabled to use this form.</b></p></noscript>
|
|
<script language="JavaScript" type="text/javascript">
|
|
<!--
|
|
//Usage: writeRichText(fieldname, html, width, height, buttons, readOnly)
|
|
writeRichText('rte1', 'here's the "<em>preloaded</em> <b>content</b>"', 400, 200, true, false);
|
|
//-->
|
|
</script>
|
|
<p>Click submit to show the value of the text box.</p>
|
|
<p><input name="submit" value="Submit" type="submit"></p>
|
|
</form>
|
|
<!-- END Demo Code -->
|
|
</body>
|
|
</html>
|
|
|