Skip to content

Instantly share code, notes, and snippets.

@patrioticcow
Created January 23, 2015 19:07
Show Gist options
  • Save patrioticcow/267e7c0ad2cea3968e2f to your computer and use it in GitHub Desktop.
Save patrioticcow/267e7c0ad2cea3968e2f to your computer and use it in GitHub Desktop.
GgEWWd
<input id="color" type="text" value="#000">
<div class="box">some color</div>
<div class="thecolor">#000</div>
$('input').on('input propertychange paste', function(){
var val = $(this).val();
$('.thecolor').html(val);
});
@color: #000;
.box{
background-color: @color;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment