Skip to content

Instantly share code, notes, and snippets.

@clamstew
Last active August 29, 2015 14:01
Show Gist options
  • Save clamstew/207b5e890a25966afd53 to your computer and use it in GitHub Desktop.
Save clamstew/207b5e890a25966afd53 to your computer and use it in GitHub Desktop.
<div id="result">result text</div>
(function(){
var resizeText = function() {
var text = $("#result").html();
var length = text.length;
if (length > 30){
$("#result").css("font-size", "0.7em");
}
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment