messages

messages - Specifies the texts of Apply and Cancel buttons of advanced palette.


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

<script type="text/javascript">

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

</script>