showLetter

showLetter - Specifies if letter of color is shown in the picker of ColorPicker widget. Its default value is false.


<input id="colorpicker" type="color" />

<script type="text/javascript">

     $(function () {
        $("#colorpicker").shieldColorPicker({
           showLetter: true,
           value: "#f23210"
        });
     });

</script>