Файл: documentation/examples/configure-static.html
Строк: 6
<?php
<html>
  <head>
    <script type="text/javascript" src="../assets/jquery.js"></script>
    <script type="text/javascript" src="../../jcolor.js"></script>
    <link rel="stylesheet" type="text/css" href="../../jcolor.css">
  </head>
  <body>
    <div class="color-picker-rgba-static"></div>
    <div class="color-picker-hsla-static"></div>
    <script>
      $('.color-picker-rgba-static').colorpicker({
        color: '#f010f0a0',
        colorSpace: 'rgba',
        staticComponents: true
      });
      $('.color-picker-hsla-static').colorpicker({
        color: '#008080a0',
        colorSpace: 'hsla',
        staticComponents: true
      });
    </script>
  </body>
</html>
?>