Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<link href="http://code.jquery.com/ui/1.9.2/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
<textarea class="form-control" cols="15" id="GIKDescription" name="GIKDescription" maxlength="50" rows="12"></textarea>
  <div id="count"></div>
</body>
</html>
 
var max = 50;
$("#GIKDescription").keyup(function(e){
$("#count").text("Characters left: " + (max - $(this).val().length));
});
Output

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

Dismiss x
public
Bin info
mrjosephpro
0viewers