Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <title>HSLA Color Picker JQuery Plugin</title>
  <meta charset="utf-8">
  <meta name="viewport" content="initial-scale=1.0">
  <link type="text/css" rel="stylesheet" href="http://necolas.github.io/normalize.css/3.0.1/normalize.css">
  <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
  <script type="text/javascript">
    $(document).ready(function() {
      $(".picker").bind('load focus blur change', function() {
        $("body").css({
          "background-color": $(this).val()
        });
      }).HSLAColorPicker(".place-picker");
      
      $(".picker2").bind('load focus blur change').HSLAColorPicker(".place-picker2");
    });
  </script>
</head>
<body>
  <div align="center">
    <input class="picker" type="text">
    <div class="place-picker"></div>
    
    <input class="picker2" type="text">
    <div class="place-picker2"></div>
  </div>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers