displayInline

displayInline - Specifies if the widget will be displayed inline or as a picker. Its default value is false.


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

<script type="text/javascript">

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

</script>