buttons

buttons - Specifies if Apply and Cancel buttons of advanced palette are visible. Its default value is true.


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

<script type="text/javascript">

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

</script>