refresh

The refresh() method reloads the current instance of the ColorPicker widget.
The optional parameter options gives the possibility to extend the initial options with the new ones.

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

<script type="text/javascript">
    $(function () {
        $("#colorpicker").shieldColorPicker({
            value: "#f23210"
        });
    });

    $("#colorpicker").swidget().refresh();

</script>