A Pen by patrioticcow on CodePen.
Created
January 23, 2015 19:07
-
-
Save patrioticcow/267e7c0ad2cea3968e2f to your computer and use it in GitHub Desktop.
GgEWWd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input id="color" type="text" value="#000"> | |
<div class="box">some color</div> | |
<div class="thecolor">#000</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('input').on('input propertychange paste', function(){ | |
var val = $(this).val(); | |
$('.thecolor').html(val); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@color: #000; | |
.box{ | |
background-color: @color; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment