JavaScript Editor Getting Started

The Upload widget allows you to upload one or more files to a server in the standard or asynchronous mode.
In order to properly render it on the page, you need to:
1. Include references to all required scripts. Make sure you include the CSS file for your preferred theme.
2. Add a <textarea> element for which to initialize the editor functionality.
3. Initialize the component.

<!DOCTYPE html>
<html>
<head>
<title>Shield UI Editor</title>
<meta charset="utf-8" />

<link rel="stylesheet" type="text/css" href="css/light/all.min.css" />
<script src="js/jquery-1.11.1.min.js" type="text/javascript"></script>
<script src="js/shieldui-all.min.js" type="text/javascript"></script>

</head>
<body>

<form method="POST">
    <textarea id="editor"></textarea>
    <br />
    <input type="submit" />
</form>

<script type="text/javascript">
    jQuery(function ($) {
        $('#editor').shieldEditor({
            height: 300
        });
    });
</script>

</body>
</html>

To see an example of the control in action, along with all the required code, please refer to the following example.