value

This setting determines the initial value of the widget.The default is empty string.


<input id="input" ></div>
<script type="text/javascript">
    $(function () {
        $("#input").shieldTextBox({
            value: "MyValue"
        });
    });
</script>