cancel

cancel - Specifies the text of Cancel button of advanced palette.Its default value is Cancel.


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

<script type="text/javascript">

     $(function () {
        $("#colorpicker").shieldColorPicker({
           advancedPalette: {
                  type: "rgb",
                  messages: {
                       cancel: "Cancel"
                 }
           },
           value: rgb(255, 0, 0)
        });
     });

</script>