Skip to content

Instantly share code, notes, and snippets.

@Opus1no2
Created February 11, 2015 20:14
Show Gist options
  • Save Opus1no2/592fffbf93a087ead303 to your computer and use it in GitHub Desktop.
Save Opus1no2/592fffbf93a087ead303 to your computer and use it in GitHub Desktop.
$(document).ready(function () {
$('#counter_example_2').on('keyup blur paste', function (e) {
if ($(this).val.length > 140) {
return false;
}
var counter = $('#counter_2');
counter.html("Remaining: " + (140 - $(this).val().length));
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment